GameActionInfo.java :  » Game » mobicsensormonitor » cn » edu » nju » software » mcomponent » Android Open Source

Android Open Source » Game » mobicsensormonitor 
mobicsensormonitor » cn » edu » nju » software » mcomponent » GameActionInfo.java
package cn.edu.nju.software.mcomponent;

public class GameActionInfo {

  private String actionName;
  private String key;
  private String path;
  private boolean isUsed=false;
  

  public GameActionInfo() {

  }

  public String toString(){
    return (actionName+" " + key+ " "+ path);
  }
  
  public GameActionInfo(String an, String key, String path) {
    this.actionName = an;
    this.key = key;
    this.path = path;
  }

  public void setActionName(String actionName) {
    this.actionName = actionName;
  }

  public String getActionName() {
    return actionName;
  }

  public void setKey(String key) {
    this.key = key;
  }

  public String getKey() {
    return key;
  }

  public void setPath(String path) {
    this.path = path;
  }

  public String getPath() {
    return path;
  }

  public void setUsed(boolean isUsed) {
    this.isUsed = isUsed;
  }

  public boolean isUsed() {
    return isUsed;
  }

}
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.