List of usage examples for com.intellij.openapi.options BaseConfigurableWithChangeSupport fireStateChanged
public void fireStateChanged()
From source file:com.intellij.ui.FieldPanelWithChangeSupport.java
License:Apache License
public static AbstractFieldPanel createPanel(AbstractFieldPanel panel, final BaseConfigurableWithChangeSupport configurable) { panel.setChangeListener(new Runnable() { public void run() { configurable.fireStateChanged(); }/*from w w w.j a va 2s . c om*/ }); return panel; }