Menu

Commit [r350]  Maximize  Restore  History

Broken up the model into interfaces and a class hierarchy

part 3

hotzst 2008-07-31

changed /plugin/META-INF/MANIFEST.MF
added /plugin/src/ch/sahits/codegen/java/model/IGeneratedDBClass.java
/plugin/META-INF/MANIFEST.MF Diff Switch to side-by-side view
--- a/plugin/META-INF/MANIFEST.MF
+++ b/plugin/META-INF/MANIFEST.MF
@@ -24,7 +24,8 @@
  org.jdom,
  ch.sahits.util,
  com.mysql,
- org.eclipse.emf.codegen
+ org.eclipse.emf.codegen,
+ ch.sahits.model;bundle-version="0.9.3";visibility:=reexport
 Eclipse-LazyStart: true
 Bundle-ClassPath: .
 Export-Package: ch.sahits.codegen.java,
/plugin/src/ch/sahits/codegen/java/model/IGeneratedDBClass.java Diff Switch to side-by-side view
--- 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
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.