marked class as final.

This commit is contained in:
hns 2002-06-07 19:11:44 +00:00
parent 8d604c8f0c
commit 0652286e82
3 changed files with 3 additions and 3 deletions

View file

@ -13,7 +13,7 @@ import helma.util.Updatable;
*/ */
public class SkinFile implements Updatable { public final class SkinFile implements Updatable {
String name; String name;
Prototype prototype; Prototype prototype;

View file

@ -19,7 +19,7 @@ import com.workingdogs.village.*;
* Database row bindings which are represented by instances of the Relation class. * Database row bindings which are represented by instances of the Relation class.
*/ */
public class DbMapping implements Updatable { public final class DbMapping implements Updatable {
// DbMappings belong to an application // DbMappings belong to an application
Application app; Application app;

View file

@ -14,7 +14,7 @@ import java.sql.SQLException;
* relational database table. This can be either a scalar property (string, date, number etc.) * relational database table. This can be either a scalar property (string, date, number etc.)
* or a reference to one or more other objects. * or a reference to one or more other objects.
*/ */
public class Relation { public final class Relation {
// these constants define different type of property-to-db-mappings // these constants define different type of property-to-db-mappings