You are viewing a plain text version of this content. The canonical link for it is here.
Posted to jaxme-dev@ws.apache.org by jo...@apache.org on 2004/08/12 01:59:05 UTC

cvs commit: ws-jaxme status.xml

jochen      2004/08/11 16:59:05

  Modified:    src/xs/org/apache/ws/jaxme/xs/jaxb/impl Tag: Branch_R0_3
                        JAXBGlobalBindingsImpl.java
               .        Tag: Branch_R0_3 status.xml
  Added:       src/test/jaxb/jira Tag: Branch_R0_3 jaxme-21.xsd
  Log:
  An NPE was thrown, when using jaxb:globalBindings/jaxb:javaType.
  PR: JAXME-21
  
  Revision  Changes    Path
  No                   revision
  No                   revision
  1.1.2.1   +171 -0    ws-jaxme/src/test/jaxb/jira/Attic/jaxme-21.xsd
  
  
  
  
  No                   revision
  No                   revision
  1.4.2.1   +3 -0      ws-jaxme/src/xs/org/apache/ws/jaxme/xs/jaxb/impl/JAXBGlobalBindingsImpl.java
  
  Index: JAXBGlobalBindingsImpl.java
  ===================================================================
  RCS file: /home/cvs/ws-jaxme/src/xs/org/apache/ws/jaxme/xs/jaxb/impl/JAXBGlobalBindingsImpl.java,v
  retrieving revision 1.4
  retrieving revision 1.4.2.1
  diff -u -r1.4 -r1.4.2.1
  --- JAXBGlobalBindingsImpl.java	16 Feb 2004 23:39:56 -0000	1.4
  +++ JAXBGlobalBindingsImpl.java	11 Aug 2004 23:59:05 -0000	1.4.2.1
  @@ -197,6 +197,9 @@
   
     public JAXBJavaType createJavaType() {
       JAXBJavaType.JAXBGlobalJavaType javaTypeImpl = ((JAXBXsObjectFactory) getObjectFactory()).newJAXBGlobalJavaType(this);
  +    if (javaTypes == null) {
  +    	javaTypes = new ArrayList();
  +    }
       javaTypes.add(javaTypeImpl);
       return javaTypeImpl;
     }
  
  
  
  No                   revision
  No                   revision
  1.15.2.5  +9 -0      ws-jaxme/status.xml
  
  Index: status.xml
  ===================================================================
  RCS file: /home/cvs/ws-jaxme/status.xml,v
  retrieving revision 1.15.2.4
  retrieving revision 1.15.2.5
  diff -u -r1.15.2.4 -r1.15.2.5
  --- status.xml	27 Jul 2004 08:40:59 -0000	1.15.2.4
  +++ status.xml	11 Aug 2004 23:59:05 -0000	1.15.2.5
  @@ -30,6 +30,15 @@
   
     <changes>
       <release version="0.3.1-dev" date="unreleased">
  +	  <action dev="JW" type="fix" context="xs">
  +	    Fixed an NPE when setting jaxb:globalBindings/jaxb:javaType.
  +	    See JAXME-21 in Jira.
  +	  </action>
  +	  <action dev="JW" type="fix" context="xs">
  +	    Restrictions of simple list types didn't have the
  +	    isList() property set. Likewise for restrictions of
  +	    simple union types. See JAXME-20 in Jira.
  +	  </action>
         <action dev="JW" type="fix" context="generator">
           If an attribute or element is mapped to the Java type "boolean",
           then the getter is now called "isFoo", rather than "getFoo".
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: jaxme-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: jaxme-dev-help@ws.apache.org