User: juhalindfors
  Date: 02/02/03 15:25:45

  Added:       src/main/test/compliance/loading/support AClass.java
                        AnotherTrivial.java AnotherTrivialMBean.java
  Log:
  
  
  Revision  Changes    Path
  1.1                  jmx/src/main/test/compliance/loading/support/AClass.java
  
  Index: AClass.java
  ===================================================================
  /*
   * JBoss, the OpenSource J2EE webOS
   *
   * Distributable under LGPL license.
   * See terms of license at gnu.org.
   */
  
  package test.compliance.loading.support;
  
  /**
   * Goes into MoreMBeans.jar
   */
  public class AClass 
  {
     private String something = null;
  }
  
  
  
  1.1                  jmx/src/main/test/compliance/loading/support/AnotherTrivial.java
  
  Index: AnotherTrivial.java
  ===================================================================
  /*
   * JBoss, the OpenSource J2EE webOS
   *
   * Distributable under LGPL license.
   * See terms of license at gnu.org.
   */
  
  package test.compliance.loading.support;
  
  /**
   * Goes into MyMBeans.jar
   */
  public class AnotherTrivial implements AnotherTrivialMBean
  {
     private AClass something = null;
     private boolean anAttribute = true;
  
     public void setSomething(AClass thing)
     {
        this.something = thing;
     }
  
     public AClass getSomething()
     {
        return something;
     }
  
     public void doOperation(String arg)
     {
     }
  }
  
  
  
  1.1                  
jmx/src/main/test/compliance/loading/support/AnotherTrivialMBean.java
  
  Index: AnotherTrivialMBean.java
  ===================================================================
  /*
   * JBoss, the OpenSource J2EE webOS
   *
   * Distributable under LGPL license.
   * See terms of license at gnu.org.
   */
  
  package test.compliance.loading.support;
  
  /**
   * Goes into MyMBeans.jar
   */
  public interface AnotherTrivialMBean
  {
     void setSomething(AClass thing);
  
     AClass getSomething();
  
     void doOperation(String arg);
  }
  
  
  

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

Reply via email to