You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by rd...@apache.org on 2004/08/30 17:45:41 UTC

cvs commit: jakarta-commons/betwixt/src/test/org/apache/commons/betwixt/recursion HybridBean.java

rdonkin     2004/08/30 08:45:41

  Added:       betwixt/src/test/org/apache/commons/betwixt/recursion
                        HybridBean.java
  Log:
  Another id generation test case, trying to see if issuee  #28372 still exists
  
  Revision  Changes    Path
  1.1                  jakarta-commons/betwixt/src/test/org/apache/commons/betwixt/recursion/HybridBean.java
  
  Index: HybridBean.java
  ===================================================================
  package org.apache.commons.betwixt.recursion;
  
  /**
   * @author <a href='http://jakarta.apache.org/commons'>Jakarta Commons Team</a>, <a href='http://www.apache.org'>Apache Software Foundation</a>
   */
  public class HybridBean {
      private AlienBean alienBean;
      private PersonBean personBean;
  
      public HybridBean(AlienBean alienBean, PersonBean personBean) {
          setAlien(alienBean);
          setPerson(personBean);
      }
      
      public HybridBean () {}
      
     
      public AlienBean getAlien() {
          return alienBean;
      }
  
      public void setAlien(AlienBean alienBean) {
          this.alienBean = alienBean;
      }
  
      public PersonBean getPerson() {
          return personBean;
      }
  
      public void setPerson(PersonBean personBean) {
          this.personBean = personBean;
      }
  }
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: commons-dev-help@jakarta.apache.org