Player.java :  » Location » role » ucb » cs169 » project7 » Android Open Source

Android Open Source » Location » role 
role » ucb » cs169 » project7 » Player.java
package ucb.cs169.project7;

public class Player {
  private int id;
  private String name;
  
  public void setId(int id) {
    this.id = id;
  }
  
  public void setName(String name) {
    this.name = name;
  }
  
  @Override
  public String toString() {
    return name;
  }

  public int getId() {
    return id;
  }
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.