marked class as final.
This commit is contained in:
parent
8d604c8f0c
commit
0652286e82
3 changed files with 3 additions and 3 deletions
|
@ -13,7 +13,7 @@ import helma.util.Updatable;
|
|||
*/
|
||||
|
||||
|
||||
public class SkinFile implements Updatable {
|
||||
public final class SkinFile implements Updatable {
|
||||
|
||||
String name;
|
||||
Prototype prototype;
|
||||
|
|
|
@ -19,7 +19,7 @@ import com.workingdogs.village.*;
|
|||
* 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
|
||||
Application app;
|
||||
|
|
|
@ -14,7 +14,7 @@ import java.sql.SQLException;
|
|||
* relational database table. This can be either a scalar property (string, date, number etc.)
|
||||
* 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
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue