Package ideah.module

Source Code of ideah.module.OutputEditor

package ideah.module;

import com.intellij.openapi.roots.ui.configuration.BuildElementsEditor;
import com.intellij.openapi.roots.ui.configuration.ModuleConfigurationState;
import com.intellij.openapi.roots.ui.configuration.ModuleElementsEditor;
import org.jetbrains.annotations.Nls;

import javax.swing.*;

final class OutputEditor extends ModuleElementsEditor {

    private final BuildElementsEditor myCompilerOutputEditor;

    OutputEditor(ModuleConfigurationState state) {
        super(state);
        myCompilerOutputEditor = new BuildElementsEditor(state) {
        };
    }

    protected JComponent createComponentImpl() {
        return myCompilerOutputEditor.createComponentImpl();
    }

    public void saveData() {
        myCompilerOutputEditor.saveData();
    }

    @Nls
    public String getDisplayName() {
        return "Paths";
    }

    public String getHelpTopic() {
        return myCompilerOutputEditor.getHelpTopic();
    }
}
TOP

Related Classes of ideah.module.OutputEditor

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.