Package org.openstreetmap.josm.tools
Interface Property<O,P>
-
- Type Parameters:
O
- Object typeP
- Property type
public interface Property<O,P>
Small interface to define a property with both read and write access.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description P
get(O obj)
Get the value of the property.void
set(O obj, P value)
Set the value of the property for the object.
-