Advertisement
Guest User

Untitled

a guest
Sep 3rd, 2015
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. public class Field<T> extends FinalField<T> implements Setter<T> {
  2.  
  3. public Field() {
  4. this(null, true);
  5. }
  6.  
  7. public Field(T value){
  8. this(value, true);
  9. }
  10.  
  11. public Field(T value, boolean nullable) {
  12. super(value, nullable);
  13. }
  14.  
  15. @Override
  16. public void set(T data) {
  17. super.set(data);
  18. }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement