Added proxy method for getPropertyNames()

This commit is contained in:
hns 2001-02-08 21:03:57 +00:00
parent a129191e19
commit 037ecba368

View file

@ -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);
}