Moved to helma/framework and finally being used

This commit is contained in:
hns 2001-08-13 12:43:10 +00:00
parent 6fe68fb145
commit 3eb484b9a0

View file

@ -1,21 +0,0 @@
// INode.java
// Copyright (c) Hannes Wallnöfer 2000
package helma.objectmodel;
/**
* Minimal Interface for Nodes that build a hierarchic tree
*/
public interface IPathElement {
public INode getSubnode (String name);
public INode getNode (String name, boolean inherit);
}