XML Refactoring Operations Plugin Extension
This plugin type allows the developer to specify one or more directories from which
the
XML Refactoring operation resources are loaded.
The RefactoringOperationsProvider
extension can be used to specify the
location where custom XML Refactoring operation resources (XQuery Update script or
XSLT
stylesheet and Operation Descriptor files) are stored. Oxygen XML Editor plugin will scan the
specified locations to load the custom operations when the XML Refactoring tool is
opened, and
allows you to share your custom refactoring operations.
Sample XML Refactoring Operations Plugin Extension
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plugin PUBLIC "-//Oxygen Plugin" "../plugin.dtd"> <plugin id="refactoring.operations" name="Refactoring operations plugin" description="Contains operation descriptors and related scripts" version="1.0"> <extension type="RefactoringOperationsProvider"> <folder path="customDir/"/> <folder path="customDir2"/> </extension> </plugin>