| org.netbeans.modules.xsl.api.XSLCustomizer
XSLCustomizer | public interface XSLCustomizer (Code) | | The XPathCustomizer is an interface to enable editing an XPath in a source document.
By implementing the interface any editor can launch the XPathCustomizer when an XPath needs
to be customized.
|
Method Summary | |
public Component | getCustomizer(Node node, DataObject dataObject) Returns the Component used to edit the XPath.
Parameters: node - the Node instance to be customized. Parameters: dataObject - the DataObject representing the XSL document.ScenarioCookie can be fetched from this DataObject usingdataObject.getCookie(ScenarioCookie.class) . | public boolean | hasCustomizer(Node node) Indicates if this customizer can return a customizing component for this
node.
Parameters: node - the Node instance to be customized. |
getCustomizer | public Component getCustomizer(Node node, DataObject dataObject)(Code) | | Returns the Component used to edit the XPath.
Parameters: node - the Node instance to be customized. Parameters: dataObject - the DataObject representing the XSL document.ScenarioCookie can be fetched from this DataObject usingdataObject.getCookie(ScenarioCookie.class) . the Component used to edit the XPath. |
hasCustomizer | public boolean hasCustomizer(Node node)(Code) | | Indicates if this customizer can return a customizing component for this
node.
Parameters: node - the Node instance to be customized. true if a customizer is supported for this node, otherwise false. |
|
|