1 package org.codehaus.ivory.serialize; 2 3 import org.codehaus.ivory.attributes.NonWebMethod; 4 5 /*** 6 * 7 * @author <a href="mailto:dan@envoisolutions.com">Dan Diephouse</a> 8 * @since May 22, 2003 9 */ 10 public class MetaBean 11 { 12 private String hello; 13 private String world; 14 15 public MetaBean() 16 { 17 } 18 19 /*** 20 * @return String 21 */ 22 public String getHello() 23 { 24 return hello; 25 } 26 27 /*** 28 * @@NonWebMethod() 29 * @return String 30 */ 31 public String getWorld() 32 { 33 return world; 34 } 35 36 /*** 37 * Sets the hello. 38 * @param hello The hello to set 39 */ 40 public void setHello(String hello) 41 { 42 this.hello = hello; 43 } 44 45 /*** 46 * Sets the world. 47 * @param world The world to set 48 */ 49 public void setWorld(String world) 50 { 51 this.world = world; 52 } 53 54 }