/config/src/com/google/marvin/config/AppDesc.java
Java | 33 lines | 20 code | 6 blank | 7 comment | 0 complexity | ca66e985468d7db994738810bf0676a6 MD5 | raw file
1package com.google.marvin.config; 2 3/** 4 * Class that holds the package name, title, and description of an app. 5 * These are used to display info about the app to the user and to go to 6 * the app on Market. 7 * 8 * @author clchen@google.com (Charles L. Chen) 9 */ 10public class AppDesc { 11 private String packageName; 12 private String title; 13 private String description; 14 15 public AppDesc(String packageName, String title, String description){ 16 this.packageName = packageName; 17 this.title = title; 18 this.description = description; 19 } 20 21 public String getPackageName(){ 22 return packageName; 23 } 24 25 public String getTitle(){ 26 return title; 27 } 28 29 public String getDescription(){ 30 return description; 31 } 32 33}