Created
July 24, 2016 17:33
-
-
Save cinohub/1e9b55d37b030a33dd4a6afb15286ea7 to your computer and use it in GitHub Desktop.
Application
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class Application { | |
private String mName; | |
private String mPackage; | |
private Drawable mIcon; | |
private boolean isChecked; | |
public boolean isChecked() { | |
return isChecked; | |
} | |
public void setChecked(boolean checked) { | |
isChecked = checked; | |
} | |
public Drawable getmIcon() { | |
return mIcon; | |
} | |
public void setmIcon(Drawable mIcon) { | |
this.mIcon = mIcon; | |
} | |
public String getmName() { | |
return mName; | |
} | |
public void setmName(String mName) { | |
this.mName = mName; | |
} | |
public String getmPackage() { | |
return mPackage; | |
} | |
public void setmPackage(String mPackage) { | |
this.mPackage = mPackage; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment