Package org.jdesktop.wonderland.client.cell.registry.CellRegistry

Examples of org.jdesktop.wonderland.client.cell.registry.CellRegistry.CellRegistryListener


        gestureListener = new PaletteDragGestureListener();

        // Create a listener for changes to the list of registered Cell
        // factories, to be used in setVisible(). When the list changes we
        // simply do a fresh update of all values.
        cellListener = new CellRegistryListener() {
            public void cellRegistryChanged() {
                // Since this is not happening (necessarily) in the AWT Event
                // Thread, we should put it in one
                SwingUtilities.invokeLater(new Runnable() {
                    public void run() {
View Full Code Here


        componentList.setTransferHandler(new ListTransferHandler());

        // Create a listener for changes to the list of registered Cell
        // factories, to be used in setVisible(). When the list changes we
        // simply do a fresh update of all values.
        cellListener = new CellRegistryListener() {

            public void cellRegistryChanged() {
                // Since this is not happening (necessarily) in the AWT Event
                // Thread, we should put it in one
                SwingUtilities.invokeLater(new Runnable() {
View Full Code Here

TOP

Related Classes of org.jdesktop.wonderland.client.cell.registry.CellRegistry.CellRegistryListener

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.