Advertisement
Guest User

data daf

a guest
Apr 19th, 2015
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. public class Recommendation
  2. {
  3. private String userName = "";
  4. private String destinationName = "";
  5. private String userNumber = "";
  6. private double activityCost = 0;
  7. private String budgetRecommendation = "";
  8. private String extravagentRecommendation = "";
  9. private final int MAX_NUM_RECOM = 13;
  10. private final int MAX_NUM_ACTIVITIES = 5;
  11. private final int MIN_NUM_ACTIVITIES = 1;
  12. private final int MAX_ACTIVITY_COST = 25;
  13.  
  14. Recommendation(){}
  15.  
  16. Recommendation(String userName, String userNumber, String destinationName, double activityCost,
  17. String[] activities)
  18. {
  19. setUserName(userName);
  20. setDestinationName(destinationName);
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement