| java.lang.Object org.codehaus.aspectwerkz.definition.XmlParser
XmlParser | public class XmlParser (Code) | | Parses the XML definition file using dom4j.
author: Jonas BonŽr |
createDocument | public static Document createDocument(URL url) throws DocumentException(Code) | | Creates a DOM document.
Parameters: url - the URL to the file containing the XML the DOM document throws: DocumentException - |
createDocument | public static Document createDocument(String string) throws DocumentException(Code) | | Creates a DOM document.
Parameters: string - the string containing the XML the DOM document throws: DocumentException - |
mergeDocuments | public static Document mergeDocuments(Document document1, Document document2)(Code) | | Merges two DOM documents.
Parameters: document1 - the first document Parameters: document2 - the second document the definition merged document |
parseNoCache | public static Set parseNoCache(ClassLoader loader, URL url)(Code) | | Parses the XML definition file not using the cache.
Parameters: loader - the current class loader Parameters: url - the URL to the definition file the definition object |
|
|