Package org.jemmy.fx

Examples of org.jemmy.fx.NodeParentImpl


    @Override
    @SuppressWarnings("unchecked")
    public <TYPE, INTERFACE extends TypeControlInterface<TYPE>> INTERFACE as(Class<INTERFACE> interfaceClass, Class<TYPE> type) {
        if (Parent.class.equals(interfaceClass)
                && Node.class.isAssignableFrom(type)) {
            return (INTERFACE) new NodeParentImpl((javafx.scene.Parent) getContent(), this.getEnvironment());
        }
        return super.as(interfaceClass, type);
    }
View Full Code Here

TOP

Related Classes of org.jemmy.fx.NodeParentImpl

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.