Package org.jdesktop.wonderland.client.input

Examples of org.jdesktop.wonderland.client.input.Event


    /**
     * {@inheritDoc}
     */
    @InternalAPI
    public Event createWonderlandEvent(EventObject eventObj) {
        Event event = null;

        if (eventObj instanceof KeyEvent) {
            event = new KeyEvent3D((KeyEvent) eventObj);
        } else if (eventObj instanceof FocusEvent) {
            event = new FocusEvent3D((FocusEvent) eventObj);
View Full Code Here

TOP

Related Classes of org.jdesktop.wonderland.client.input.Event

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.