Package com.dci.intellij.dbn.debugger.settings

Source Code of com.dci.intellij.dbn.debugger.settings.DBProgramDebuggerConfigurable

package com.dci.intellij.dbn.debugger.settings;

import com.dci.intellij.dbn.debugger.settings.ui.DBProgramDebuggerSettingsForm;
import com.intellij.openapi.options.Configurable;
import com.intellij.openapi.options.ConfigurationException;
import org.jetbrains.annotations.Nls;

import javax.swing.Icon;
import javax.swing.JComponent;

public class DBProgramDebuggerConfigurable implements Configurable {
    @Nls
    public String getDisplayName() {
        return "Database";
    }

    public Icon getIcon() {
        return null;
    }

    public String getHelpTopic() {
        return null;
    }

    public JComponent createComponent() {
        return new DBProgramDebuggerSettingsForm().getComponent();
    }

    public boolean isModified() {
        return false;
    }

    public void apply() throws ConfigurationException {
    }

    public void reset() {
    }

    public void disposeUIResources() {
    }
}
TOP

Related Classes of com.dci.intellij.dbn.debugger.settings.DBProgramDebuggerConfigurable

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.