Code Generator for Eclipse Code
Brought to you by:
hotzst
changed | /plugin/META-INF/MANIFEST.MF |
added | /plugin/src/ch/sahits/codegen/java/model/IGeneratedDBClass.java |
--- a +++ b/plugin/src/ch/sahits/codegen/java/model/IGeneratedDBClass.java @@ -0,0 +1,23 @@ +package ch.sahits.codegen.java.model; +/** + * This interface defines methods needed + * for a database class + * @author Andi Hotz + * @since 0.9.3 + * + */ +public interface IGeneratedDBClass { + + /** + * @return the dbProductName + * @uml.property name="dbProductName" + */ + public String getDbProductName(); + + /** + * @param _dbProductName the dbProductName to set + * @uml.property name="dbProductName" + */ + public void setDbProductName(String _dbProductName); + +} \ No newline at end of file