RemoteKey.java :  » Remote » a-mp-droid » com » mediaportal » ampdroid » data » commands » Android Open Source

Android Open Source » Remote » a mp droid 
a mp droid » com » mediaportal » ampdroid » data » commands » RemoteKey.java
package com.mediaportal.ampdroid.data.commands;

public class RemoteKey {
   private int id;
   private String name;
   private String icon;
   private String action;
   
   public RemoteKey(int _id, String _name, String _action, String _icon) {
      super();
      this.id = _id;
      this.name = _name;
      this.action = _action;
      this.icon = _icon;
   }
   public int getId() {
      return id;
   }
   public void setId(int id) {
      this.id = id;
   }
   public String getName() {
      return name;
   }
   public void setName(String name) {
      this.name = name;
   }
   public String getIcon() {
      return icon;
   }
   public void setIcon(String icon) {
      this.icon = icon;
   }
   public String getAction() {
      return action;
   }
   public void setAction(String action) {
      this.action = action;
   }
   
}
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.