Advertisement
Guest User

Untitled

a guest
Jun 24th, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. /*
  2.  * To change this template, choose Tools | Templates
  3.  * and open the template in the editor.
  4.  */
  5. package Model;
  6.  
  7. /**
  8.  *
  9.  * @author wlaat
  10.  */
  11. public class Project {
  12.  
  13.     public String name;
  14.     public String descr;
  15.     public String context;
  16.  
  17.     public Project(String n, String d, String c) {
  18.         name = n;
  19.         descr = d;
  20.         context = c;
  21.     }
  22.  
  23.     public void setContext(String context) {
  24.         this.context = context;
  25.     }
  26.  
  27.     public void setDescr(String descr) {
  28.         this.descr = descr;
  29.     }
  30.  
  31.     public void setName(String name) {
  32.         this.name = name;
  33.     }
  34.  
  35.     public String getContext() {
  36.         return context;
  37.     }
  38.  
  39.     public String getDescr() {
  40.         return descr;
  41.     }
  42.  
  43.     public String getName() {
  44.         return name;
  45.     }
  46. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement