Package de.ailis.jollada.model

Examples of de.ailis.jollada.model.Element


     * Leaves animation element
     */

    private void leaveAnimation()
    {
        final Element parent = this.animation.getParent();
        if (parent instanceof Animation)
            this.animation = (Animation) parent;
        else
            this.animation = null;
        leaveElement();
View Full Code Here


     * Leaves a node element.
     */

    private void leaveNode()
    {
        final Element element = this.node.getParent();
        if (element instanceof Node)
            this.node = (Node) element;
        else
            this.node = null;
        leaveElement();
View Full Code Here

TOP

Related Classes of de.ailis.jollada.model.Element

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.