Example usage for com.intellij.openapi.options UnnamedConfigurable interface-usage

List of usage examples for com.intellij.openapi.options UnnamedConfigurable interface-usage

Introduction

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

Usage

From source file browsewordatcaret.BWACEditorConfigurable.java

public class BWACEditorConfigurable implements UnnamedConfigurable {
    private JCheckBox cdAutoHighlight;
    private JCheckBox cdWrapAround;
    private JCheckBox cdHumpBound;

    public BWACEditorConfigurable() {

From source file com.intellij.application.options.GeneralCodeStyleOptionsProvider.java

/**
 * @author Dennis.Ushakov
 */
public interface GeneralCodeStyleOptionsProvider extends UnnamedConfigurable {
    void apply(CodeStyleSettings settings);

From source file com.intellij.codeInsight.daemon.impl.tagTreeHighlighting.XmlTagTreeHighlightingConfigurable.java

/**
 * @author Eugene.Kudelevsky
 */
public class XmlTagTreeHighlightingConfigurable implements UnnamedConfigurable {
    private JCheckBox myEnableTagTreeHighlightingCheckBox;
    private JSpinner myLevelsSpinner;

From source file com.intellij.debugger.settings.ArrayRendererConfigurable.java

public class ArrayRendererConfigurable implements UnnamedConfigurable {
    private JTextField myEntriesLimit;
    private JTextField myStartIndex;
    private JTextField myEndIndex;
    private boolean myEntriesLimitUpdateEnabled = true;
    private boolean myIndexUpdateEnabled = true;

From source file com.intellij.debugger.ui.tree.render.CompoundNodeConfigurable.java

public class CompoundNodeConfigurable implements UnnamedConfigurable {
    private final CompoundNodeRenderer myRenderer;

    private final UnnamedConfigurable myLabelConfigurable;
    private final UnnamedConfigurable myChildrenConfigurable;

From source file com.intellij.debugger.ui.tree.render.configurables.ClassChildrenExpressionConfigurable.java

public class ClassChildrenExpressionConfigurable implements UnnamedConfigurable {
    private final ExpressionChildrenRenderer myRenderer;

    private JPanel myPanel;
    private LabeledComponent<JPanel> myChildrenPanel;
    private LabeledComponent<JPanel> myExpandablePanel;

From source file com.intellij.debugger.ui.tree.render.configurables.ClassLabelExpressionConfigurable.java

public class ClassLabelExpressionConfigurable implements UnnamedConfigurable {
    private final LabelRenderer myRenderer;
    private LabeledComponent<CompletionEditor> myCompletionEditor;
    private final JPanel myPanel;

    public ClassLabelExpressionConfigurable(@NotNull Project project, LabelRenderer renderer) {

From source file com.intellij.debugger.ui.tree.render.configurables.NamedChildrenConfigurable.java

public class NamedChildrenConfigurable implements UnnamedConfigurable {
    private Table myTable;
    private final EnumerationChildrenRenderer myRenderer;
    private JPanel myPanel;
    private JLabel myTableLabel;
    private JButton myButtonAdd;

From source file com.intellij.packaging.ui.ArtifactPropertiesEditor.java

/**
 * @author nik
 */
public abstract class ArtifactPropertiesEditor implements UnnamedConfigurable {
    public static final String VALIDATION_TAB = "Validation";
    public static final String POST_PROCESSING_TAB = "Post-processing";

From source file com.intellij.packaging.ui.PackagingElementPropertiesPanel.java

/**
 * @author nik
 */
public abstract class PackagingElementPropertiesPanel implements UnnamedConfigurable {

    public abstract void apply();