Added getProperties() method to let others access the properties

underlying this database mapping.
This commit is contained in:
hns 2002-09-25 17:32:27 +00:00
parent 93e6af7799
commit 5a6f044c40

View file

@ -18,7 +18,7 @@ import com.workingdogs.village.*;
* relational database table. Basically it consists of a set of JavaScript property-to- * relational database table. Basically it consists of a set of JavaScript property-to-
* 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 final class DbMapping implements Updatable { public final class DbMapping implements Updatable {
// DbMappings belong to an application // DbMappings belong to an application
@ -684,6 +684,10 @@ public final class DbMapping implements Updatable {
public DbMapping getParentMapping () { public DbMapping getParentMapping () {
return parentMapping; return parentMapping;
} }
public SystemProperties getProperties () {
return props;
}
} }