Package com.volantis.mcs.eclipse.builder.editors.common

Examples of com.volantis.mcs.eclipse.builder.editors.common.SelectedVariantMonitor


            overviewIndex = addPage(overview, getEditorInput());
            setPageText(overviewIndex, EditorMessages.getString(OVERVIEW_LABEL_KEY));
            designIndex = addPage(design, getEditorInput());
            setPageText(designIndex, EditorMessages.getString(DESIGN_LABEL_KEY));

            new SelectedVariantMonitor(context) {
                // Javadoc inherited
                public void readOnlyStateChanged(ReadOnlyStateChangedEvent event) {
                    boolean enableDesign = !event.isReadOnly();
                    if (enableDesign != design.isEnabled()) {
                        design.setEnabled(enableDesign);
View Full Code Here

TOP

Related Classes of com.volantis.mcs.eclipse.builder.editors.common.SelectedVariantMonitor

Copyright © 2018 www.massapicom. 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.