Advertisement
Guest User

Untitled

a guest
Nov 28th, 2014
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.91 KB | None | 0 0
  1. public class App
  2. {
  3.     private String DeveloperName;
  4.     private String AppName;
  5.     private String Description;
  6.         private String Category;
  7.         private String Type;
  8.     private double Price;
  9.    
  10. public String getDeveloperName()
  11. {
  12. return DeveloperName;
  13. }
  14.  
  15. public void setDeveloperName(String DeveloperName)
  16. {
  17.     this.DeveloperName = DeveloperName;
  18. }
  19.  
  20. public String getAppName()
  21. {
  22.     return AppName;
  23. }
  24.  
  25. public void setAppName(String AppName)
  26. {
  27.     this.AppName = AppName;
  28. }
  29.  
  30. public String getDescription()
  31.         {
  32.             return Description;
  33.         }
  34. public void setDescription(String Description)
  35. {
  36.     this.Description = Description;
  37. }
  38.  
  39. public String getCategory()
  40. {
  41.     return Category;
  42. }
  43.  
  44. public void setCategory(String Category)
  45. {
  46.     this.Category = Category;
  47. }
  48.  
  49. public String getType()
  50. {
  51.     return Type;
  52. }
  53.  
  54. public void setType(String Type)
  55. {
  56.     this.Type = Type;
  57. }
  58. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement