Advertisement
Guest User

Untitled

a guest
Sep 19th, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. class PropertyValue{
  2.  
  3. String cid;
  4. String property;
  5. String value;
  6.  
  7. public static Set<String> properties = new HashSet<>();
  8. public static Set<String> values = new HashSet<>();
  9.  
  10. public PropertyValue(String cid, String property, String value) {
  11. this.cid = cid;
  12. this.property = property;
  13. this.value = value;
  14.  
  15. keys.add(property);
  16. values.add(value);
  17. }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement