Package org.erlide.ui.util

Examples of org.erlide.ui.util.IColorManager


            }

        });

        final IPreferenceStore store = ErlideUIPlugin.getDefault().getPreferenceStore();
        final IColorManager colorManager = new ColorManager();
        consoleOutputViewer.setDocument(fDoc);
        consoleOutputViewer.configure(new ErlangConsoleSourceViewerConfiguration(store,
                colorManager, backend));

        consoleInputViewer = new SourceViewer(sashForm, null, SWT.MULTI | SWT.WRAP
View Full Code Here


    public static SourceViewer createErlangPreviewer(final Composite parent,
            final IColorManager colorManager0, final IPreferenceStore topStore,
            final List<TokenHighlight> colors0, final String content) {
        // TODO we should move this method, to a utility class (or maybe create
        // an ErlangPreviewSourceViewer class)
        final IColorManager colorManager = colorManager0 != null ? colorManager0
                : new ColorManager();

        List<TokenHighlight> colors;
        if (colors0 == null) {
            colors = new ArrayList<TokenHighlight>();
View Full Code Here

TOP

Related Classes of org.erlide.ui.util.IColorManager

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.