public abstract class ChoiceSelector
extends java.lang.Object
ChoiceGroup
must provide an implementation of this
class to be notified when a Choice
is
activate and deactivated.Constructor and Description |
---|
ChoiceSelector() |
Modifier and Type | Method and Description |
---|---|
abstract void |
onActivate(oracle.bali.inspector.PropertyModel model,
java.lang.String choice)
Method called to when a
Choice is selected. |
abstract void |
onDeactivate(oracle.bali.inspector.PropertyModel model,
java.lang.String choice)
Method called to when a
Choice is unselected. |
public abstract void onActivate(oracle.bali.inspector.PropertyModel model, java.lang.String choice)
Choice
is selected.model
- the PropertyModel
used to access property values.choice
- the unique ID of the activated Choice
.public abstract void onDeactivate(oracle.bali.inspector.PropertyModel model, java.lang.String choice) throws java.beans.PropertyVetoException
Choice
is unselected.model
- the PropertyModel
used to access property values.choice
- the unique ID of the activated Choice
.java.beans.PropertyVetoException