Created
March 12, 2012 14:54
-
-
Save mgenov/2022453 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public interface Child1 extends ValueProxy { | |
String getValue(); | |
void setValue(String value); | |
Long getId(); | |
void setId(Long id); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public interface Child2 extends ValueProxy { | |
DeviceTypeProxy getType(); | |
void setType(DeviceTypeProxy type); | |
void setMinCount(Integer minCount); | |
Integer getMinCount(); | |
void setMaxCount(Integer maxCount); | |
Integer getMaxCount(); | |
MoneyProxy getRent(); | |
void setRent(MoneyProxy rent); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public interface MyMainValueProxy extends ValueProxy { | |
public Long getId(); | |
public String getName(); | |
void setName(String name); | |
List<Child1> getTypes(); | |
MoneyProxy getMonthlyTax(); | |
List<Child2> getChild2(); | |
void setChild2(List<Child2> deviceTypeSpecifications); | |
Boolean isNegotiableMonthTax(); | |
void setNegotiableMonthTax(Boolean isNegotiableMonthTax); | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment