diff --git a/src/helma/objectmodel/IPathElement.java b/src/helma/objectmodel/IPathElement.java deleted file mode 100644 index 05b4bfa6..00000000 --- a/src/helma/objectmodel/IPathElement.java +++ /dev/null @@ -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); - - -} - - - -