/config/src/com/google/marvin/config/AppDesc.java
http://eyes-free.googlecode.com/ · Java · 33 lines · 20 code · 6 blank · 7 comment · 0 complexity · ca66e985468d7db994738810bf0676a6 MD5 · raw file
- package com.google.marvin.config;
-
- /**
- * Class that holds the package name, title, and description of an app.
- * These are used to display info about the app to the user and to go to
- * the app on Market.
- *
- * @author clchen@google.com (Charles L. Chen)
- */
- public class AppDesc {
- private String packageName;
- private String title;
- private String description;
-
- public AppDesc(String packageName, String title, String description){
- this.packageName = packageName;
- this.title = title;
- this.description = description;
- }
-
- public String getPackageName(){
- return packageName;
- }
-
- public String getTitle(){
- return title;
- }
-
- public String getDescription(){
- return description;
- }
-
- }