/* * BeanExample.java * * Created on October 22, 2003, 11:07 AM */ /** * * @author Tim Downey */ public class BeanExample { /** Creates a new instance of BeanExample */ public BeanExample() { } private String first; private String[] team; public void setFirst(String first) { this.first = first; } public String getFirst() { return this.first; } public String[] getTeam() { return(team); } public void setTeam(String[] team) { this.team = team; } public String getTeam(int i) { return(team[i]); } public void setTeam(int i, String team) { this.team[i] = team; } }