You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by di...@apache.org on 2004/03/29 15:15:14 UTC

cvs commit: ws-axis/java/src/org/apache/axis/wsdl/fromJava Types.java

dims        2004/03/29 05:15:14

  Modified:    java/src/org/apache/axis/wsdl/fromJava Types.java
  Log:
  Fix for MX4J build failure reported by Stefan Bodewig (http://marc.theaimsgroup.com/?l=axis-dev&m=108056460326296&w=2)
  
  Revision  Changes    Path
  1.92      +13 -0     ws-axis/java/src/org/apache/axis/wsdl/fromJava/Types.java
  
  Index: Types.java
  ===================================================================
  RCS file: /home/cvs/ws-axis/java/src/org/apache/axis/wsdl/fromJava/Types.java,v
  retrieving revision 1.91
  retrieving revision 1.92
  diff -u -r1.91 -r1.92
  --- Types.java	27 Feb 2004 17:07:23 -0000	1.91
  +++ Types.java	29 Mar 2004 13:15:14 -0000	1.92
  @@ -827,6 +827,19 @@
       }
   
       /**
  +     * @deprecated
  +     * Please use writeSchemaElement(String namespaceURI, Element element) 
  +     *
  +     * @param qName qName to get the namespace of the schema node
  +     * @param element      the Element to append to the Schema node
  +     * @throws AxisFault
  +     */
  +    public void writeSchemaElement(QName qName, Element element)
  +            throws AxisFault {
  +        writeSchemaElement(qName.getNamespaceURI(), element);
  +    }
  +
  +    /**
        * Write out the given Element into the appropriate schema node.
        * If need be create the schema node as well
        *