You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@empire-db.apache.org by fr...@apache.org on 2009/08/26 08:24:48 UTC

svn commit: r807892 - /incubator/empire-db/trunk/empire-db-examples/empire-db-example-struts2/src/main/java/org/apache/empire/struts2/websample/db/SampleDB.java

Author: francisdb
Date: Wed Aug 26 06:24:47 2009
New Revision: 807892

URL: http://svn.apache.org/viewvc?rev=807892&view=rev
Log:
fix non utf-8 compatible javadoc

Modified:
    incubator/empire-db/trunk/empire-db-examples/empire-db-example-struts2/src/main/java/org/apache/empire/struts2/websample/db/SampleDB.java

Modified: incubator/empire-db/trunk/empire-db-examples/empire-db-example-struts2/src/main/java/org/apache/empire/struts2/websample/db/SampleDB.java
URL: http://svn.apache.org/viewvc/incubator/empire-db/trunk/empire-db-examples/empire-db-example-struts2/src/main/java/org/apache/empire/struts2/websample/db/SampleDB.java?rev=807892&r1=807891&r2=807892&view=diff
==============================================================================
--- incubator/empire-db/trunk/empire-db-examples/empire-db-example-struts2/src/main/java/org/apache/empire/struts2/websample/db/SampleDB.java (original)
+++ incubator/empire-db/trunk/empire-db-examples/empire-db-example-struts2/src/main/java/org/apache/empire/struts2/websample/db/SampleDB.java Wed Aug 26 06:24:47 2009
@@ -35,7 +35,7 @@
     }
     
     /**
-     * Tabellendefinition für Departments
+     * This class represents the definition of the Departments table.
      */
     public static class Departments extends SampleTable
     {
@@ -45,7 +45,6 @@
         public final DBTableColumn C_BUSINESS_UNIT;
         public final DBTableColumn C_UPDATE_TIMESTAMP;
 
-        // Konstruktor für Tabelle
         public Departments(DBDatabase db)
         {
             super("DEPARTMENTS", db);
@@ -67,7 +66,7 @@
     }   
 
     /**
-     * Tabellendefinition für Persons
+     * This class represents the definition of the Employees table.
      */
     public static class Employees extends SampleTable
     {
@@ -83,7 +82,6 @@
         public final DBTableColumn C_RETIRED;
         public final DBTableColumn C_UPDATE_TIMESTAMP;
 
-        // Konstruktor für Tabelle
         public Employees(DBDatabase db)
         {
             super("EMPLOYEES", db);