(no commit message)
authorErik Brakkee <erik@brakkee.org>
Fri, 4 Mar 2011 22:36:56 +0000 (22:36 +0000)
committerErik Brakkee <erik@brakkee.org>
Fri, 4 Mar 2011 22:36:56 +0000 (22:36 +0000)
support/general/src/main/java/org/wamblee/xml/SimpleNamespaceContext.java
support/general/src/main/java/org/wamblee/xml/XPathContext.java

index d5ff949828f59796d7ac93cf346bbf045d978bb9..85efeb0845f0f933f1e7ea11fcd8aa9c3e424e8f 100644 (file)
@@ -49,6 +49,10 @@ public class SimpleNamespaceContext implements NamespaceContext {
         prefixMap = new HashMap<String, String>();
     }
     
+    /**
+     * Creation of the namespace context for use with static imports.
+     * @return Empty namespace context. 
+     */
     public static SimpleNamespaceContext namespaces() { 
         return new SimpleNamespaceContext();
     }
index 42fa99d436acd95c98864fbde859e808eb87a191..dc7869a8f26b6618e05c2da2834247e4bdc943b5 100644 (file)
@@ -35,6 +35,11 @@ public class XPathContext {
         xpath.setNamespaceContext(aContext);
     }
     
+    /**
+     * Creation of the XPath context for use with static imports. 
+     * @param aContext Namespace context
+     * @return XPath context.
+     */
     public static XPathContext xpathcontext(NamespaceContext aContext) { 
         return new XPathContext(aContext);
     }