Example usage for com.intellij.openapi.options SettingsEditor SettingsEditor

List of usage examples for com.intellij.openapi.options SettingsEditor SettingsEditor

Introduction

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

Prototype

public SettingsEditor() 

Source Link

Usage

From source file:org.mustbe.consulo.sandLanguage.ide.run.SandConfiguration.java

License:Apache License

@NotNull
@Override//from www.  j  a  va  2s .c o  m
public SettingsEditor<? extends RunConfiguration> getConfigurationEditor() {
    return new SettingsEditor<RunConfiguration>() {
        @Override
        protected void resetEditorFrom(RunConfiguration s) {

        }

        @Override
        protected void applyEditorTo(RunConfiguration s) throws ConfigurationException {

        }

        @NotNull
        @Override
        protected JComponent createEditor() {
            return new JBLabel("DUMMY");
        }
    };
}