added public isReadonly() method to check the readonly flag from

other packages.
This commit is contained in:
hns 2002-02-25 14:45:54 +00:00
parent 3fee354352
commit 4e192c39c0

View file

@ -478,6 +478,12 @@ public class Relation {
return order;
}
/**
* Tell wether the property described by this relation is to be handled as readonly/write protected.
*/
public boolean isReadonly () {
return readonly;
}
/**
* Check if the child node fullfills the constraints defined by this relation.
@ -632,53 +638,3 @@ public class Relation {
}