EclipseModeConfigurableForm.java :  » IntelliJ » idea-trinkets » org » intellij » trinkets » eclipseMode » settings » Java Open Source

Java Open Source » IntelliJ » idea trinkets 
idea trinkets » org » intellij » trinkets » eclipseMode » settings » EclipseModeConfigurableForm.java
package org.intellij.trinkets.eclipseMode.settings;

import javax.swing.*;

/**
 * UI form for {@link org.intellij.trinkets.eclipseMode.settings.EclipseModeConfigurable}.
 *
 * @author Alexey Efimov
 */
public class EclipseModeConfigurableForm {
    private JCheckBox enableIncrementalCompilationOnCheckBox;
    private JPanel rootPanel;

    public JPanel getRootPanel() {
        return rootPanel;
    }

    public void setIncrementalCompilationEnabled(boolean value) {
        enableIncrementalCompilationOnCheckBox.setSelected(value);
    }

    public boolean isIncrementalCompilationEnabled() {
        return enableIncrementalCompilationOnCheckBox.isSelected();
    }
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.