1 22 package test.implementation.modelmbean.support; 23 24 public class Trivial implements TrivialMBean 25 { 26 private String something = null; 27 private boolean anAttribute = true; 28 29 public void setSomething(String thing) 30 { 31 this.something = thing; 32 } 33 34 public String getSomething() 35 { 36 return something; 37 } 38 39 public boolean doOperation(String arg) 40 { 41 return true; 42 } 43 } 44 | Popular Tags |