You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lenya.apache.org by eg...@apache.org on 2003/08/06 10:29:07 UTC

cvs commit: cocoon-lenya/src/java/org/apache/lenya/xml NamespaceHelper.java

egli        2003/08/06 01:29:07

  Modified:    src/java/org/apache/lenya/xml NamespaceHelper.java
  Log:
  javadoc fixes to make checkstyle happy.
  
  Revision  Changes    Path
  1.14      +11 -2     cocoon-lenya/src/java/org/apache/lenya/xml/NamespaceHelper.java
  
  Index: NamespaceHelper.java
  ===================================================================
  RCS file: /home/cvs/cocoon-lenya/src/java/org/apache/lenya/xml/NamespaceHelper.java,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- NamespaceHelper.java	23 Jul 2003 13:21:29 -0000	1.13
  +++ NamespaceHelper.java	6 Aug 2003 08:29:07 -0000	1.14
  @@ -105,6 +105,8 @@
        * @param localName The local name of the document element.
        * @param namespaceUri The namespace URI.
        * @param prefix The namespace prefix.
  +     * 
  +     * @throws ParserConfigurationException if an error occured
        */
       public NamespaceHelper(String namespaceUri, String prefix, String localName)
           throws ParserConfigurationException {
  @@ -116,7 +118,8 @@
   
       /**
        * Sets the document of this NamespaceHelper.
  -     * @param document
  +     * 
  +     * @param document the document
        */
       protected void setDocument(Document document) {
           this.document = document;
  @@ -207,6 +210,8 @@
        * of this NamespaceHelper.
        *
        * @param element The parent element.
  +     * 
  +     * @return the children.
        */
       public Element[] getChildren(Element element) {
           return DocumentHelper.getChildren(element, getNamespaceURI());
  @@ -218,6 +223,8 @@
        *
        * @param element The parent element.
        * @param localName The local name of the children to return.
  +     * 
  +     * @return the children.
        */
       public Element[] getChildren(Element element, String localName) {
           return DocumentHelper.getChildren(element, getNamespaceURI(), localName);
  @@ -229,6 +236,8 @@
        *
        * @param element The parent element.
        * @param localName The local name of the children to return.
  +     * 
  +     * @return the first child.
        */
       public Element getFirstChild(Element element, String localName) {
           return DocumentHelper.getFirstChild(element, getNamespaceURI(), localName);
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: lenya-cvs-unsubscribe@cocoon.apache.org
For additional commands, e-mail: lenya-cvs-help@cocoon.apache.org