Examples of NodeContainer


Examples of org.kie.definition.process.NodeContainer

        Node node = nodeInstance.getNode();
        if (node == null) {
            return "";
        }
        String nodeId = "" + node.getId();
        NodeContainer nodeContainer = node.getNodeContainer();
        while (nodeContainer != null) {
            if (nodeContainer instanceof Node) {
                node = (Node) nodeContainer;
                nodeContainer = node.getNodeContainer();
                // TODO fix this filter out hidden compositeNode inside ForEach node
                if (!(nodeContainer.getClass().getName().endsWith("ForEachNode"))) {
                    nodeId = node.getId() + ":" + nodeId;
                }
            } else {
                break;
            }
View Full Code Here

Examples of org.kie.definition.process.NodeContainer

        return (Node) getElement();
    }
   
    public boolean isFullProperties() {
      Node node = getNode();
      NodeContainer container = node.getNodeContainer();
      while (!(container instanceof RuleFlowProcess)) {
        if (container instanceof Node) {
          container = ((Node) container).getNodeContainer();
        } else {
          return false;
View Full Code Here

Examples of org.kie.definition.process.NodeContainer

        return (Node) getElement();
    }
   
    public boolean isFullProperties() {
      Node node = getNode();
      NodeContainer container = node.getNodeContainer();
      while (!(container instanceof RuleFlowProcess)) {
        if (container instanceof Node) {
          container = ((Node) container).getNodeContainer();
        } else {
          return false;
View Full Code Here

Examples of org.openstreetmap.osmosis.core.container.v0_6.NodeContainer

                }
                SimpleFeature feature = featureBuilder.buildFeature(ref.name());
                Entity entity = converter.toEntity(feature, id);
                EntityContainer container;
                if (entity instanceof Node) {
                    container = new NodeContainer((Node) entity);
                } else {
                    container = new WayContainer((Way) entity);
                }

                ChangeAction action = diff.changeType().equals(ChangeType.ADDED) ? ChangeAction.Create
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.