Package com.vaadin.v7.event
Interface FieldEvents.FocusNotifier
-
- All Superinterfaces:
Serializable
- All Known Implementing Classes:
AbstractTextField,ComboBox,DateField,Grid,InlineDateField,NativeSelect,OptionGroup,PasswordField,PopupDateField,Select,TextArea,TextField
- Enclosing interface:
- FieldEvents
@Deprecated public static interface FieldEvents.FocusNotifier extends Serializable
Deprecated.The interface for adding and removingFocusEventlisteners. By implementing this interface a class explicitly announces that it will generate aFocusEventwhen it receives keyboard focus.- Since:
- 6.2
- See Also:
FieldEvents.FocusListener,FieldEvents.FocusEvent
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description voidaddFocusListener(FieldEvents.FocusListener listener)Deprecated.Adds aFocusListenerto the Component which gets fired when aFieldreceives keyboard focus.voidremoveFocusListener(FieldEvents.FocusListener listener)Deprecated.Removes aFocusListenerfrom the Component.
-
-
-
Method Detail
-
addFocusListener
void addFocusListener(FieldEvents.FocusListener listener)
Deprecated.Adds aFocusListenerto the Component which gets fired when aFieldreceives keyboard focus.- Parameters:
listener-- Since:
- 6.2
- See Also:
FieldEvents.FocusListener
-
removeFocusListener
void removeFocusListener(FieldEvents.FocusListener listener)
Deprecated.Removes aFocusListenerfrom the Component.- Parameters:
listener-- Since:
- 6.2
- See Also:
FieldEvents.FocusListener
-
-