User: schaefera
  Date: 01/12/01 13:29:45

  Modified:    src/etc  class.java interface.java
  Log:
  Fixed the problem with Jetty on Windows as well as remove the obsolete
  DataCollector from the J2eeDeployers.
  
  Revision  Changes    Path
  1.9       +32 -40    jboss/src/etc/class.java
  
  Index: class.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss/src/etc/class.java,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- class.java        2001/08/03 17:15:42     1.8
  +++ class.java        2001/12/01 21:29:45     1.9
  @@ -1,12 +1,13 @@
   /*
  -* JBoss, the OpenSource J2EE webOS
  -*
  -* Distributable under LGPL license.
  -* See terms of license at gnu.org.
  -*/
  + * JBoss, the OpenSource J2EE webOS
  + *
  + * Distributable under LGPL license.
  + * See terms of license at gnu.org.
  + */
  +
   package x;
   
  -//EXPLICIT IMPORTS
  +// EXPLICIT IMPORTS
   import a.b.C1; // GOOD
   import a.b.C2;
   import a.b.C3;
  @@ -14,38 +15,33 @@
   // DO NOT WRITE
   import a.b.*;  // BAD
   
  -/**
  -*   <description> 
  -*
  -*   @see <related>
  -*   @author  <a href="mailto:{email}";>{full name}</a>.
  -*   @author  <a href="mailto:[EMAIL PROTECTED]";>Marc Fleury</a>
  -*   @version $Revision: 1.8 $
  -*   
  -*   <p><b>Revisions:</b>
  -*
  -*   <p><b>yyyymmdd author:</b>
  -*   <ul>
  -*   <li> explicit fix description (no line numbers but methods) go beyond the cvs 
commit message
  -*   </ul>
  -*    eg: 
  -*   <p><b>20010516 marc fleury:</b>
  -*   <ul>
  -*   <li> Ask all developers to clearly document the Revision, changed the header.  
  -*   </ul>
  -*   <p><b>20010719 andreas schaefer:</b>
  -*   <ul>
  -*   <li> Changed indentation to 3 spaces to go along with the guidelines and 
removed second comment
  -*        about this to avoid confusion.
  -*   </ul>
  -*/
  -
  -
   // DO NOT USE "TAB" TO INDENT CODE USE *3* SPACES FOR PORTABILITY AMONG EDITORS
   
  +/**
  + * <description> 
  + *
  + * @see <related>
  + * @author  <a href="mailto:{email}";>{full name}</a>.
  + * @author  <a href="mailto:[EMAIL PROTECTED]";>Marc Fleury</a>
  + * @version $Revision: 1.9 $
  + *   
  + * <p><b>Revisions:</b>
  + *
  + * <p><b>yyyymmdd author:</b>
  + * <ul>
  + * <li> explicit fix description (no line numbers but methods) go 
  + *            beyond the cvs commit message
  + * </ul>
  + *  eg: 
  + * <p><b>20010516 marc fleury:</b>
  + * <ul>
  + * <li> Ask all developers to clearly document the Revision, 
  + *            changed the header.  
  + * </ul>
  + */
   public class X
  -extends Y
  -implements Z
  +   extends Y
  +   implements Z
   {
      // Constants -----------------------------------------------------
      
  @@ -98,7 +94,6 @@
            }
         }
         
  -      
         // Test database
         vendorSource.getXAConnection().close();
         
  @@ -106,10 +101,8 @@
         bind(new InitialContext(), "java:/"+getPoolName(),
            new Reference(vendorSource.getClass().getName(),
               getClass().getName(), null));
  -      
  -      // We are done
  -      log.log("XA Data source "+getPoolName()+" bound to java:/"+getPoolName());
      }
  +   
      // Z implementation ----------------------------------------------
      
      // Y overrides ---------------------------------------------------
  @@ -122,4 +115,3 @@
      
      // Inner classes -------------------------------------------------
   }
  -
  
  
  
  1.7       +34 -43    jboss/src/etc/interface.java
  
  Index: interface.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss/src/etc/interface.java,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- interface.java    2001/08/03 17:15:42     1.6
  +++ interface.java    2001/12/01 21:29:45     1.7
  @@ -1,12 +1,13 @@
   /*
  -* JBoss, the OpenSource J2EE webOS
  -*
  -* Distributable under LGPL license.
  -* See terms of license at gnu.org.
  -*/
  + * JBoss, the OpenSource J2EE webOS
  + *
  + * Distributable under LGPL license.
  + * See terms of license at gnu.org.
  + */
  +
   package x;
   
  -//EXPLICIT IMPORTS
  +// EXPLICIT IMPORTS
   import a.b.C1; // GOOD
   import a.b.C2;
   import a.b.C3;
  @@ -14,46 +15,36 @@
   // DO NOT WRITE
   import a.b.*;  // BAD
   
  -
  -/**
  -*   <description>
  -*
  -*   @see <related>
  -*   @author  <a href="mailto:{email}";>{full name}</a>.
  -*   @author  <a href="mailto:[EMAIL PROTECTED]";>Marc Fleury</a>
  -*   @version $Revision: 1.6 $
  -*   Revisions:
  -*
  -*   <p><b>Revisions:</b>
  -*
  -*   <p><b>yyyymmdd author:</b>
  -*   <ul>
  -*   <li> explicit fix description (no line numbers but methods) go beyond the cvs 
commit message
  -*   </ul>
  -*    eg: 
  -*   <p><b>20010516 marc fleury:</b>
  -*   <ul>
  -*   <li> Ask all developers to clearly document the Revision, changed the header.  
  -*   </ul>
  -*   <p><b>20010719 andreas schaefer:</b>
  -*   <ul>
  -*   <li> Changed indentation to 3 spaces to go along with the guidelines and 
removed second comment
  -*        about this to avoid confusion.
  -*   </ul>
  -*/
  -
  -
   // DO NOT USE "TAB" TO INDENT CODE USE *3* SPACES FOR PORTABILITY AMONG EDITORS
   
  +/**
  + * <description> 
  + *
  + * @see <related>
  + * @author  <a href="mailto:{email}";>{full name}</a>.
  + * @author  <a href="mailto:[EMAIL PROTECTED]";>Marc Fleury</a>
  + * @version $Revision: 1.7 $
  + *   
  + * <p><b>Revisions:</b>
  + *
  + * <p><b>yyyymmdd author:</b>
  + * <ul>
  + * <li> explicit fix description (no line numbers but methods) go 
  + *            beyond the cvs commit message
  + * </ul>
  + *  eg: 
  + * <p><b>20010516 marc fleury:</b>
  + * <ul>
  + * <li> Ask all developers to clearly document the Revision, 
  + *            changed the header.  
  + * </ul>
  + */
   public interface X
  -extends Y
  +   extends Y
   {
  -   // Constants -----------------------------------------------------
  -   
  -   // Static --------------------------------------------------------
  -   
  -   // Public --------------------------------------------------------
  -   public ReturnClass doSomething()
  -   throws ExceptionA, ExceptionB;
  +   int MY_STATIC_FINAL_VALUE = 57;
  +
  +   ReturnClass doSomething() throws ExceptionA, ExceptionB;
      
   }
  +
  
  
  

_______________________________________________
Jboss-development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development

Reply via email to