User: hiram   
  Date: 01/03/01 17:13:06

  Modified:    src/main/org/jbossmq/xml XElement.java XElementConsumer.java
                        XElementException.java XElementProducer.java
                        XElementTester.java
  Log:
  - Changed Source references of GPL to LGPL.
  - QueueBrowser Selector fix.
  - Persistence data files now do not get corrupted after a source rebuild
  
  Revision  Changes    Path
  1.3       +3 -3      jbossmq/src/main/org/jbossmq/xml/XElement.java
  
  Index: XElement.java
  ===================================================================
  RCS file: /products/cvs/ejboss/jbossmq/src/main/org/jbossmq/xml/XElement.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- XElement.java     2001/02/01 04:52:09     1.2
  +++ XElement.java     2001/03/02 01:13:05     1.3
  @@ -1,7 +1,7 @@
   /*
    * JBossMQ, the OpenSource JMS implementation
    *
  - * Distributable under GPL license.
  + * Distributable under LGPL license.
    * See terms of license at gnu.org.
    */
   package org.jbossmq.xml;
  @@ -59,7 +59,7 @@
    *
    *   @author Hiram Chirino ([EMAIL PROTECTED])
    *
  - *   @version $Revision: 1.2 $
  + *   @version $Revision: 1.3 $
    */
   public class XElement {
        
  @@ -663,4 +663,4 @@
                return t.elements();
                
        }
  -}
  +}
  \ No newline at end of file
  
  
  
  1.2       +9 -3      jbossmq/src/main/org/jbossmq/xml/XElementConsumer.java
  
  Index: XElementConsumer.java
  ===================================================================
  RCS file: 
/products/cvs/ejboss/jbossmq/src/main/org/jbossmq/xml/XElementConsumer.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XElementConsumer.java     2001/01/26 00:43:57     1.1
  +++ XElementConsumer.java     2001/03/02 01:13:05     1.2
  @@ -1,7 +1,7 @@
   /*
    * JBossMQ, the OpenSource JMS implementation
    *
  - * Distributable under GPL license.
  + * Distributable under LGPL license.
    * See terms of license at gnu.org.
    */
   package org.jbossmq.xml;
  @@ -9,9 +9,15 @@
   /*
    * JBossMQ, the OpenSource JMS implementation
    *
  - * Distributable under GPL license.
  + * Distributable under LGPL license.
    * See terms of license at gnu.org.
    */
  +/*
  + * JBossMQ, the OpenSource JMS implementation
  + *
  + * Distributable under LGPL license.
  + * See terms of license at gnu.org.
  + */
   /**
    * XMLRecordConsumer Interface defines the method signatures used
    * to notify the consumer object of parsing errors, document starts,
  @@ -19,7 +25,7 @@
    *
    *   @author Hiram Chirino ([EMAIL PROTECTED])
    *
  - *   @version $Revision: 1.1 $
  + *   @version $Revision: 1.2 $
    */
   public interface XElementConsumer {  
        
  
  
  
  1.2       +9 -3      jbossmq/src/main/org/jbossmq/xml/XElementException.java
  
  Index: XElementException.java
  ===================================================================
  RCS file: 
/products/cvs/ejboss/jbossmq/src/main/org/jbossmq/xml/XElementException.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XElementException.java    2001/01/26 00:43:57     1.1
  +++ XElementException.java    2001/03/02 01:13:05     1.2
  @@ -1,7 +1,7 @@
   /*
    * JBossMQ, the OpenSource JMS implementation
    *
  - * Distributable under GPL license.
  + * Distributable under LGPL license.
    * See terms of license at gnu.org.
    */
   package org.jbossmq.xml;
  @@ -9,16 +9,22 @@
   /*
    * JBossMQ, the OpenSource JMS implementation
    *
  - * Distributable under GPL license.
  + * Distributable under LGPL license.
    * See terms of license at gnu.org.
    */
  +/*
  + * JBossMQ, the OpenSource JMS implementation
  + *
  + * Distributable under LGPL license.
  + * See terms of license at gnu.org.
  + */
   /**
    * XMLObjectException is used to signal errors occuring inside of an
    * XMLObject.
    *
    *   @author Hiram Chirino ([EMAIL PROTECTED])
    *
  - *   @version $Revision: 1.1 $
  + *   @version $Revision: 1.2 $
    */
   public class XElementException extends Exception {
        
  
  
  
  1.2       +2 -2      jbossmq/src/main/org/jbossmq/xml/XElementProducer.java
  
  Index: XElementProducer.java
  ===================================================================
  RCS file: 
/products/cvs/ejboss/jbossmq/src/main/org/jbossmq/xml/XElementProducer.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XElementProducer.java     2001/01/26 00:43:57     1.1
  +++ XElementProducer.java     2001/03/02 01:13:05     1.2
  @@ -1,7 +1,7 @@
   /*
    * JBossMQ, the OpenSource JMS implementation
    *
  - * Distributable under GPL license.
  + * Distributable under LGPL license.
    * See terms of license at gnu.org.
    */
   package org.jbossmq.xml;
  @@ -28,7 +28,7 @@
    *
    *   @author Hiram Chirino ([EMAIL PROTECTED])
    *
  - *   @version $Revision: 1.1 $
  + *   @version $Revision: 1.2 $
    */
   public class XElementProducer {
   
  
  
  
  1.2       +9 -3      jbossmq/src/main/org/jbossmq/xml/XElementTester.java
  
  Index: XElementTester.java
  ===================================================================
  RCS file: /products/cvs/ejboss/jbossmq/src/main/org/jbossmq/xml/XElementTester.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XElementTester.java       2001/01/26 00:43:57     1.1
  +++ XElementTester.java       2001/03/02 01:13:05     1.2
  @@ -1,7 +1,7 @@
   /*
    * JBossMQ, the OpenSource JMS implementation
    *
  - * Distributable under GPL license.
  + * Distributable under LGPL license.
    * See terms of license at gnu.org.
    */
   package org.jbossmq.xml;
  @@ -9,15 +9,21 @@
   /*
    * JBossMQ, the OpenSource JMS implementation
    *
  - * Distributable under GPL license.
  + * Distributable under LGPL license.
    * See terms of license at gnu.org.
    */
  +/*
  + * JBossMQ, the OpenSource JMS implementation
  + *
  + * Distributable under LGPL license.
  + * See terms of license at gnu.org.
  + */
   /**
    * This class is for a basic unit test of the XElement class
    *
    *   @author Hiram Chirino ([EMAIL PROTECTED])
    *
  - *   @version $Revision: 1.1 $
  + *   @version $Revision: 1.2 $
    */
   public class XElementTester {
        
  
  
  

Reply via email to