Java Naming Conventions
- property = pair of methods
public X getPropertyName()
public void setPropertyName(X newValue)
- Replace propertyName with actual name
(e.g. getColor/setColor)
- Exception for boolean properties:
public boolean isPropertyName()
- Decapitalization hokus-pokus:
getColor -> color
getURL -> URL