Properties
Demystifying Java properties.
You've seen it.
These type of property patterns are so common in Java that Evo makes them easier.
Here are examples of two cases of Evo property mappings.
Getter
Setter
Evo Property
public int getScore()
public void setScore(int score)
score
public bool isHappy()
public void setHappy(bool happy)
happy
Last updated