Package com.intellij.ide.impl

Examples of com.intellij.ide.impl.TypeSafeDataProviderAdapter


        myConsoleEditor.setColorsScheme(scheme);
        myHistoryViewer.setColorsScheme(scheme);
        myPanel.add(myHistoryViewer.getComponent());
        myPanel.add(myConsoleEditor.getComponent());
        setupComponents();
        DataManager.registerDataProvider(myPanel, new TypeSafeDataProviderAdapter(this));

        myHistoryViewer.getComponent().addComponentListener(new ComponentAdapter() {
            public void componentResized(ComponentEvent e) {
                if (myForceScrollToEnd.getAndSet(false)) {
                    final JScrollBar scrollBar = myHistoryViewer.getScrollPane().getVerticalScrollBar();
View Full Code Here

TOP

Related Classes of com.intellij.ide.impl.TypeSafeDataProviderAdapter

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.