Created
September 13, 2012 05:13
-
-
Save dagvadorj/3712031 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
class Citizen { | |
private String name; | |
@Calculated(name="Registration date") | |
private Date registrationDate; | |
private Date birthDate; | |
@Calculated(name="Income") | |
private Double income; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment