/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

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