01: /*
02: * Commitable.java
03: *
04: * This file is part of SQL Workbench/J, http://www.sql-workbench.net
05: *
06: * Copyright 2002-2008, Thomas Kellerer
07: * No part of this code maybe reused without the permission of the author
08: *
09: * To contact the author please send an email to: support@sql-workbench.net
10: *
11: */
12: package workbench.interfaces;
13:
14: /**
15: * @author support@sql-workbench.net
16: *
17: * To change the template for this generated type comment go to
18: * Window - Preferences - Java - Code Generation - Code and Comments
19: */
20: public interface Commitable {
21: void commit();
22:
23: void rollback();
24: }
|