Package org.palo.viewapi.internal

Examples of org.palo.viewapi.internal.VirtualElementImpl


  private static final ElementNode createElementNode(XElementNode xElNode,
      Hierarchy hierarchy) {
    Element element = null;
    XElement xElement = xElNode.getElement();
    if(xElement.getElementType().equals(XElementType.VIRTUAL)) {
      element = new VirtualElementImpl(xElement.getName(), hierarchy);
    }else
      element = hierarchy.getElementById(xElNode.getElement().getId());
    ElementNode node = new ElementNode(element);
    addChildren(node, xElNode, hierarchy);
    return node;
View Full Code Here

TOP

Related Classes of org.palo.viewapi.internal.VirtualElementImpl

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.