[jboss-cvs] jboss-seam/src/test/misc/org/jboss/seam/test ...

Shane Bryzak Shane_Bryzak at symantec.com
Sun Jan 7 21:51:25 EST 2007


  User: sbryzak2
  Date: 07/01/07 21:51:25

  Added:       src/test/misc/org/jboss/seam/test  Widget.java
  Log:
  moved Widget into test dir
  
  Revision  Changes    Path
  1.1      date: 2007/01/08 02:51:25;  author: sbryzak2;  state: Exp;jboss-seam/src/test/misc/org/jboss/seam/test/Widget.java
  
  Index: Widget.java
  ===================================================================
  package org.jboss.seam.test;
  
  import java.util.Map;
  import java.util.List;
  
  /**
   * Used for remoting unit tests to test a variety of constraint combinations.
   *
   * @author Shane Bryzak
   */
  public class Widget
  {
    private String value;
    private String secret;
    private Widget child;
    private Map<String,Widget> widgetMap;
    private List<Widget> widgetList;
  
    public String getValue()
    {
      return value;
    }
  
    public void setValue(String value)
    {
      this.value = value;
    }
  
    public String getSecret()
    {
      return secret;
    }
  
    public void setSecret(String secret)
    {
      this.secret = secret;
    }
  
    public Widget getChild()
    {
      return child;
    }
  
    public void setChild(Widget child)
    {
      this.child = child;
    }
  
    public Map<String,Widget> getWidgetMap()
    {
      return widgetMap;
    }
  
    public void setWidgetMap(Map<String,Widget> widgetMap)
    {
      this.widgetMap = widgetMap;
    }
  
    public List<Widget> getWidgetList()
    {
      return widgetList;
    }
  
    public void setWidgetList(List<Widget> widgetList)
    {
      this.widgetList = widgetList;
    }
  }
  
  
  



More information about the jboss-cvs-commits mailing list