01: /*
02: * JFolder, Copyright 2001-2006 Gary Steinmetz
03: *
04: * Distributable under LGPL license.
05: * See terms of license at gnu.org.
06: */
07:
08: package org.jfolder.platforms.stores.base;
09:
10: //base classes
11: import java.math.BigDecimal;
12: import java.sql.PreparedStatement;
13: import java.sql.ResultSet;
14: import java.sql.SQLException;
15:
16: //project specific classes
17: import org.jfolder.platforms.stores.base.SystemStatement;
18:
19: //other classes
20:
21: public class DropStatement extends SystemStatement {
22:
23: private CreateStatement wcs = null;
24:
25: protected DropStatement(CreateStatement inWcs) {
26: //super(inWs);
27: this .wcs = inWcs;
28: }
29:
30: //protected void setEntity(WorkflowCreateStatement inWcs) {
31: // this.wcs = inWcs;
32: //}
33:
34: public CreateStatement getEntity() {
35: return this.wcs;
36: }
37: }
|