KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > mmbase > bridge > jsp > taglib > edit > CancelTag


1 /*
2
3 This software is OSI Certified Open Source Software.
4 OSI Certified is a certification mark of the Open Source Initiative.
5
6 The license (Mozilla version 1.0) can be read at the MMBase site.
7 See http://www.MMBase.org/license
8
9 */

10 package org.mmbase.bridge.jsp.taglib.edit;
11
12 import org.mmbase.bridge.Transaction;
13
14 /**
15  * This tag can be used inside a transaction tag, to cancel it.
16  *
17  * @author Michiel Meeuwissen
18  * @version $Id: CancelTag.java,v 1.5 2003/06/06 10:03:19 pierre Exp $
19  */

20
21 public class CancelTag extends CommitTag {
22
23     protected void doAction(Transaction t) {
24         t.cancel();
25     }
26 }
27
Popular Tags