Package org.jdesktop.wonderland.modules.userlist.client

Examples of org.jdesktop.wonderland.modules.userlist.client.GoToCoverScreenInfo


               LOGGER.warning("find GoToCoverScreen.xml in " + collection.getPath());
           }
          
          
           Reader r = new InputStreamReader(resource.getURL().openStream());
           GoToCoverScreenInfo out = GoToCoverScreenInfo.decode(r);
           return out;
        } catch (ContentRepositoryException ex) {
            Logger.getLogger(WonderlandUserListPresenter.class.getName()).log(Level.SEVERE, null, ex);
        } catch (JAXBException ex) {
            Logger.getLogger(WonderlandUserListPresenter.class.getName()).log(Level.SEVERE, null, ex);
View Full Code Here


                        .getPrimaryViewCell().getWorldTransform().getTranslation(null).x==desiredTransform.getTranslation(null).x &&
                        ClientContextJME.getViewManager()
                        .getPrimaryViewCell().getWorldTransform().getTranslation(null).z==desiredTransform.getTranslation(null).z)) {

                        CoverScreenData csd = new CoverScreenData();
                        GoToCoverScreenInfo info1 = getGoToCoverScreenInfo();
                        if(info1!=null) {
                            csd.setBackgroundColor(info1.getBackgroundColor());
                            csd.setImageURL(info1.getImageURL());
                            csd.setMessage(info1.getMessage());
                            csd.setTextColor(info1.getTextColor());
                        }
                        //cell status change listener for removing cover screen
                        new CoverScreenListener(desiredTransform.getTranslation(null),csd);
                    }
                //}
View Full Code Here

TOP

Related Classes of org.jdesktop.wonderland.modules.userlist.client.GoToCoverScreenInfo

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.