1 19 20 package org.netbeans.modules.xml.xpath; 21 22 28 public interface XPathLocationPath extends XPathExpression { 29 30 34 boolean getAbsolute(); 35 36 37 41 void setAbsolute(boolean absolute); 42 43 47 LocationStep[] getSteps(); 48 49 50 54 void setSteps(LocationStep[] steps); 55 56 57 62 void setSimplePath(boolean isSimplePath); 63 64 69 boolean isSimplePath(); 70 } 71 | Popular Tags |