Example usage for com.intellij.openapi.options BaseConfigurableWithChangeSupport fireStateChanged

List of usage examples for com.intellij.openapi.options BaseConfigurableWithChangeSupport fireStateChanged

Introduction

In this page you can find the example usage for com.intellij.openapi.options BaseConfigurableWithChangeSupport fireStateChanged.

Prototype

public void fireStateChanged() 

Source Link

Usage

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;
}