1 19 20 package org.netbeans.modules.xml.xpath; 21 22 23 29 public interface XPathModel { 30 31 32 String [] VALID_FUNCTION_NAMES = { 33 "unparsed-entity-uri", "system-property", 34 "string-literal", "element-available", "function-available", 35 "document", "current", "generate-id", "stringToBytes", "bytesToString", 36 "getCurrentTime", "getGUID", "getBPId", "convert", "incrementDatetime", 37 "decrementDatetime", "exists", 38 "current-time", "current-date", "current-dateTime" 39 }; 40 41 42 String [] VALID_BPWS_FUNCTION_NAMES = { 43 "getContainerData", "getContainerProperty", "getLinkStatus" 44 }; 45 46 52 XPathExpression parseExpression(String expression) 53 throws XPathException; 54 } 55 | Popular Tags |