1 19 20 package org.netbeans.modules.xml.xpath; 21 22 import java.util.Collection ; 23 24 29 public interface XPathOperationOrFuntion extends XPathExpression { 30 31 35 String getName(); 36 37 38 42 Collection getChildren(); 43 44 45 49 int getChildCount(); 50 51 52 58 XPathExpression getChild(int index) throws IndexOutOfBoundsException ; 59 60 61 65 void addChild(XPathExpression child); 66 67 68 73 boolean removeChild(XPathExpression child); 74 75 76 79 void clearChildren(); 80 81 } 82 | Popular Tags |