[jboss-cvs] jboss-seam/examples/mail/src/org/jboss/seam/example/mail ...

Peter Muir peter at bleepbleep.org.uk
Sun Jan 21 11:13:04 EST 2007


  User: pmuir   
  Date: 07/01/21 11:13:04

  Added:       examples/mail/src/org/jboss/seam/example/mail  Lists.java
  Log:
  tidy up mail example
  
  Revision  Changes    Path
  1.1      date: 2007/01/21 16:13:04;  author: pmuir;  state: Exp;jboss-seam/examples/mail/src/org/jboss/seam/example/mail/Lists.java
  
  Index: Lists.java
  ===================================================================
  package org.jboss.seam.example.mail;
  
  import org.jboss.seam.annotations.*;
  
  @Name("lists")
  public class Lists{
  
      String[] numbers = {"one", "two", "three", "four", "five"};
      String[] daysOfWeek = {"Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday"};
      
      public String[] getNumbers() {
          return numbers;
      }
  
      public String[] getDaysOfWeek() {
          return daysOfWeek;
      }
  
  }
  
  
  



More information about the jboss-cvs-commits mailing list