Example usage for com.intellij.openapi.options UnnamedConfigurable disposeUIResources

List of usage examples for com.intellij.openapi.options UnnamedConfigurable disposeUIResources

Introduction

In this page you can find the example usage for com.intellij.openapi.options UnnamedConfigurable disposeUIResources.

Prototype

default void disposeUIResources() 

Source Link

Document

Notifies the configurable component that the Swing form will be closed.

Usage

From source file:com.intellij.codeEditor.printing.ExportToHTMLDialog.java

License:Apache License

@Override
protected void dispose() {
    for (UnnamedConfigurable extension : myExtensions) {
        extension.disposeUIResources();
    }//from  w ww.j  ava2  s.  com
    super.dispose();
}

From source file:org.jetbrains.idea.maven.project.MavenImportingConfigurable.java

License:Apache License

public void disposeUIResources() {
    for (final UnnamedConfigurable additionalConfigurable : myAdditionalConfigurables) {
        additionalConfigurable.disposeUIResources();
    }/*from w ww . ja  v a2 s  .c o m*/
}