Option.java :  » Game » samecolorgame » com » GameSpace » CoreAssets » Android Open Source

Android Open Source » Game » samecolorgame 
samecolorgame » com » GameSpace » CoreAssets » Option.java
package com.GameSpace.CoreAssets;


public class Option{
  
  private String type;
  private String label;
  private String value;
  
  
  public Option(){
    
  }

  
  public String getType(){
    return type;
  }
  
  public void setType(String str){
    type=str;
  }
  
  public String getLabel(){
    return label;
  }
  
  public void setLabel(String str){
    label=str;
  }
  
  public String getValue(){
    return value;
  }
  
  public void setValue(String str){
    value=str;
  }
  
}
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.