1 19 20 package org.netbeans.lib.ddl; 21 22 28 public interface DDLCommand 29 { 30 31 public DatabaseSpecification getSpecification(); 32 33 34 public String getObjectName(); 35 36 39 public void setObjectName(String name); 40 41 42 public void execute() throws DDLException; 43 44 51 public String getCommand() 52 throws DDLException; 53 54 55 public boolean wasException(); 56 57 } 58 | Popular Tags |