User: juhalindfors
  Date: 02/03/08 08:09:02

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

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

Reply via email to