Uses of Class
org.eclipse.ui.forms.events.ExpansionEvent
-
Packages that use ExpansionEvent Package Description org.eclipse.ui.forms.events Events and listeners for forms-based parts.org.eclipse.ui.forms.widgets Custom widgets and controls for forms-based parts. -
-
Uses of ExpansionEvent in org.eclipse.ui.forms.events
Methods in org.eclipse.ui.forms.events with parameters of type ExpansionEvent Modifier and Type Method Description void
ExpansionAdapter. expansionStateChanged(ExpansionEvent e)
Sent when the link is exited.void
IExpansionListener. expansionStateChanged(ExpansionEvent e)
Notifies the listener after the expandable control has changed its expansion state.void
ExpansionAdapter. expansionStateChanging(ExpansionEvent e)
Sent when the link is entered.void
IExpansionListener. expansionStateChanging(ExpansionEvent e)
Notifies the listener that the expandable control is about to change its expansion state.Method parameters in org.eclipse.ui.forms.events with type arguments of type ExpansionEvent Modifier and Type Method Description static IExpansionListener
IExpansionListener. expansionStateChangedAdapter(Consumer<ExpansionEvent> consumer)
Static helper method to create aIExpansionListener
for theIExpansionListener.expansionStateChanged(ExpansionEvent)
method, given a lambda expression or a method reference.static IExpansionListener
IExpansionListener. expansionStateChangingAdapter(Consumer<ExpansionEvent> consumer)
Static helper method to create aIExpansionListener
for theIExpansionListener.expansionStateChanging(ExpansionEvent)
method, given a lambda expression or a method reference. -
Uses of ExpansionEvent in org.eclipse.ui.forms.widgets
Method parameters in org.eclipse.ui.forms.widgets with type arguments of type ExpansionEvent Modifier and Type Method Description SectionFactory
SectionFactory. onExpanded(Consumer<ExpansionEvent> consumer)
Creates anIExpansionListener
and registers it for the expansionStateChanged event.SectionFactory
SectionFactory. onExpanding(Consumer<ExpansionEvent> consumer)
Creates anIExpansionListener
and registers it for the expansionStateChanging event.
-