public interface ValueModel
Represents a typed value that can participate in Swing data binding.
| Type Params | Return Type | Name and description |
|---|---|---|
|
public Class |
getType()Returns the declared value type for this model. |
|
public Object |
getValue()Returns the current value exposed by this model. |
|
public boolean |
isEditable()Indicates whether setValue(Object) is expected to succeed. |
|
public void |
setValue(Object value)Updates the current value exposed by this model. |
Returns the declared value type for this model.
Returns the current value exposed by this model.
nullIndicates whether setValue(Object) is expected to succeed.
true when the model can be written toUpdates the current value exposed by this model.
value - the new value