You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@cocoon.apache.org by iv...@apache.org on 2002/09/27 04:51:42 UTC

cvs commit: xml-cocoon2/src/java/org/apache/cocoon/samples/xmlform UserBean.java

ivelin      2002/09/26 19:51:42

  Modified:    src/java/org/apache/cocoon/samples/xmlform UserBean.java
  Log:
  added xf:textarea
  
  Revision  Changes    Path
  1.4       +11 -0     xml-cocoon2/src/java/org/apache/cocoon/samples/xmlform/UserBean.java
  
  Index: UserBean.java
  ===================================================================
  RCS file: /home/cvs/xml-cocoon2/src/java/org/apache/cocoon/samples/xmlform/UserBean.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- UserBean.java	8 Sep 2002 12:20:28 -0000	1.3
  +++ UserBean.java	27 Sep 2002 02:51:42 -0000	1.4
  @@ -35,6 +35,7 @@
     private List roles = new ArrayList();
     private String hobbies[];
     private HashMap allHobbies;
  +  private String notes = "<your notes here>";
     
     private boolean hidden = false; 
     
  @@ -225,6 +226,16 @@
     public void setFavorite( List newFavorites )
     {
       favorites = newFavorites;
  +  }
  +  
  +  public String getNotes()
  +  {
  +    return notes;
  +  }
  +  
  +  public void setNotes( String newNotes )
  +  {
  +    notes = newNotes;
     }
     
     public void initRoles()
  
  
  

----------------------------------------------------------------------
In case of troubles, e-mail:     webmaster@xml.apache.org
To unsubscribe, e-mail:          cocoon-cvs-unsubscribe@xml.apache.org
For additional commands, e-mail: cocoon-cvs-help@xml.apache.org