Examples of View2DDisplayer


Examples of org.jdesktop.wonderland.modules.appbase.client.view.View2DDisplayer

                viewsToRemove =  (LinkedList<View2D>) views.clone();
                views.clear();
                cellViews.clear();
            }               
            for (View2D view : viewsToRemove) {
                View2DDisplayer displayer = view.getDisplayer();
                if (displayer != null) {
                    displayer.destroyView(view);
                }
            }
        }
    }
View Full Code Here

Examples of org.jdesktop.wonderland.modules.appbase.client.view.View2DDisplayer

    /** Add a new view for the displayer of the view. */
    // IMPLEMENTATION NOTE: It is a fundamental assumption that a window can have only one
    // view for a particular displayer. Otherwise it becomes very tricky to implement view.setParent.
    private void addViewForDisplayer(View2D view) {
        View2DDisplayer displayer = view.getDisplayer();
        displayerToView.put(displayer, view);
    }
View Full Code Here

Examples of org.jdesktop.wonderland.modules.appbase.client.view.View2DDisplayer

        if (app == null) {
            return;
        }
        synchronized (app.getAppCleanupLock()) {
            synchronized (this) {
                View2DDisplayer displayer = view.getDisplayer();
                displayerToView.remove(displayer);
            }
        }
    }
View Full Code Here

Examples of org.jdesktop.wonderland.modules.appbase.client.view.View2DDisplayer

        headerWindow.setCoplanar(true);

        // Unless we do this the interior of the frame will deliver events
        // to the control arb of the application and they will look like they
        // are coming from the interior of the main window's view. We don't want this.
        View2DDisplayer displayer = view.getDisplayer();
        frameView = (View2DEntity) headerWindow.getView(displayer);
        frameView.disableGUI();

        headerPanel = headerPanelAllocator.allocate();
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.