Added proxy method for getPropertyNames()
This commit is contained in:
parent
a129191e19
commit
037ecba368
1 changed files with 10 additions and 0 deletions
|
@ -87,6 +87,16 @@ import java.util.Vector;
|
|||
}
|
||||
}
|
||||
|
||||
public Vector getPropertyNames (Node home, Relation rel) {
|
||||
try {
|
||||
return nmgr.getPropertyNames (home, rel);
|
||||
} catch (Exception x) {
|
||||
if ("true".equalsIgnoreCase (Server.sysProps.getProperty("debug")))
|
||||
x.printStackTrace();
|
||||
throw new RuntimeException ("Error retrieving property names: "+x.getMessage ());
|
||||
}
|
||||
}
|
||||
|
||||
public void registerNode (Node node) {
|
||||
nmgr.registerNode (node);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue