Package org.jdesktop.wonderland.modules.avatarbase.client.ui

Examples of org.jdesktop.wonderland.modules.avatarbase.client.ui.AvatarConfigFrame


        // The menu item for the avatar configuration
        avatarConfigMI = new JMenuItem(bundle.getString("Avatar_Appearance..."));
        avatarConfigMI.addActionListener(new ActionListener() {
            public void actionPerformed(ActionEvent e) {
                AvatarConfigFrame f = new AvatarConfigFrame();
                f.setVisible(true);
            }
        });

        // Check box to set collision enabled
        collisionResponseEnabledMI = new JCheckBoxMenuItem(bundle.getString("Avatar_Collision_Response_Enabled"));
View Full Code Here


            return new ContextMenuItem[] {
                new SimpleContextMenuItem(bundle.getString("Configure..."),
                        new ContextMenuActionListener()
                {
                    public void actionPerformed(ContextMenuItemEvent event) {
                        AvatarConfigFrame f = new AvatarConfigFrame();
                        f.setVisible(true);
                    }
                })
            };
        }
View Full Code Here

TOP

Related Classes of org.jdesktop.wonderland.modules.avatarbase.client.ui.AvatarConfigFrame

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.