You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

LuIntDbo.java 382B

123456789101112131415161718192021222324252627
  1. package com.luticate.utils.dbo;
  2. /**
  3. * Created by robin on 11/27/15.
  4. */
  5. public class LuIntDbo extends LuDbo {
  6. private Integer _value;
  7. public LuIntDbo()
  8. {
  9. }
  10. public LuIntDbo(Integer value)
  11. {
  12. _value = value;
  13. }
  14. public Integer getInt() {
  15. return _value;
  16. }
  17. public void setInt(Integer value) {
  18. _value = value;
  19. }
  20. }