Package org.openstreetmap.josm.actions
Interface ExpertToggleAction.ExpertModeChangeListener
-
- All Known Implementing Classes:
CorrelateGpxWithImages
,GpxLayer
,IconToggleButton
,LayerListDialog.ColumnWidthAdaptionListener
,PreferenceTabbedPane
,TiledRenderToggleAction
,WindowMenu
- Enclosing class:
- ExpertToggleAction
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public static interface ExpertToggleAction.ExpertModeChangeListener
This listener is notified whenever the expert mode setting changed.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
expertChanged(boolean isExpert)
The expert mode changed.
-
-
-
Method Detail
-
expertChanged
void expertChanged(boolean isExpert)
The expert mode changed.- Parameters:
isExpert
-true
if expert mode was enabled, false otherwise.
-
-