Advertisement
Guest User

Untitled

a guest
Jul 1st, 2016
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. public class Route {
  2.  
  3. ArrayList<Fact> facts = new ArrayList<>();
  4.  
  5. public String wonum;
  6. public String description;
  7. public String description_longdescription;
  8. public String startdate;
  9. public String finishdate;
  10. public String aes_location;
  11. public String unit_location;
  12. public String inspectorsOnRoute;
  13.  
  14.  
  15. // public Fact createFact(String dscr){
  16. //
  17. // Fact fct = new Fact(this);
  18. //
  19. // fct.description = dscr;
  20. // fct.scanarea = "ะžะกะž"; //for test;
  21. // fct.funcarea = "1324";//for test
  22. //
  23. // return fct;
  24. // }
  25.  
  26. public void addFact(Fact fct){
  27.  
  28. facts.add(fct);
  29. }
  30.  
  31.  
  32.  
  33. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement