Examples of Node


Examples of org.jitterbit.integration.client.ui.interchange.entity.transformation.tree.utils.Node

    private final FillDataElementKit fillDataElementKit;

    public DataElementFactoryImpl(TreeMapperSourceTree sourceTree, TransformationExpressionSource source) {
        this.sourceTree = sourceTree;
        Node generator = sourceTree.getGenerator(source.getTargetNode());
        fillDataElementKit = new FillDataElementKit(sourceTree.m_DocReader, generator);
    }

Examples of org.jitterbit.integration.data.structure.database.DatabaseStructureTree.Node

        xsd.closeElement(/*element*/);
    }

    private boolean addTables(DatabaseStructure dbStruct) {
        DatabaseStructureTree tableTree = new DatabaseStructureTree(dbStruct);
        Node root = tableTree.getRoot();
        return addTableDefinition(root);
    }

Examples of org.jivesoftware.smackx.pubsub.Node

    }
   
    public void actionPerformed(ActionEvent e) {
        PubSubManager pubsubMgr = parent.getPubsubMgr();
       
        Node node = getNode(pubsubMgr);
        if(node == null) return;
       
        String message = getMessage();

        Item<SimplePayload> item = createItem(message);

Examples of org.jmule.core.searchmanager.tree.Node

  /**
   * Gets the search string
   * @return the search string
   */
  public String getQuery() {
    Node n = search_tree.getNode(NodeType.FILE_NAME);
    return (String)n.getKey().getValue(Tree.DATA_KEY);
   
  }

Examples of org.joni.ast.Node

        } while ((can = can.cdr) != null);
    }

    private void noNameDisableMapFor_quantifier(Node node, int[]map, Ptr counter) {
        QuantifierNode qn = (QuantifierNode)node;
        Node target = qn.target;
        Node old = target;
        target = noNameDisableMap(target, map, counter);

        if (target != old) {
            qn.setTarget(target);
            if (target.getType() == NodeType.QTFR) qn.reduceNestedQuantifier((QuantifierNode)target);

Examples of org.jostraca.tree.Node

public class ParentStep extends Step {

  @Override
  public void perform(Node pNode) {
    Node p = pNode.getParent();
    mNext.perform(p);
  }

Examples of org.jpox.query.node.Node

        compileEqualityExpression();

        while (p.parseChar('&', '&'))
        {
            compileEqualityExpression();
            Node expr = new Node(Node.OPERATOR, "&");
            expr.insertChildNode((Node) stack.pop());
            expr.insertChildNode((Node) stack.pop());
            stack.push(expr);
        }
    }

Examples of org.jrdf.graph.Node

    }

    private boolean findAnyEqualAttributeValue(Map<Attribute, Node> avps1, Map<Attribute, Node> avps2) {
        boolean found = false;
        for (Map.Entry<Attribute, Node> attributeValue : avps1.entrySet()) {
            final Node avpsNode2 = avps2.get(attributeValue.getKey());
            found = avpsNode2 != null && attributeValue.getValue().equals(avpsNode2);
            if (found) {
                break;
            }
        }

Examples of org.jruby.ast.Node

        ArrayNode arrayNode = (ArrayNode) node;

        ArrayCallback callback = new ArrayCallback() {

                    public void nextValue(BodyCompiler context, Object sourceArray, int index) {
                        Node node = (Node) ((Object[]) sourceArray)[index];
                        compile(node, context);
                    }
                };

        context.createNewArray(arrayNode.childNodes().toArray(), callback, arrayNode.isLightweight());

Examples of org.jrubyparser.ast.Node

    private Module loadFunctionsFromFile(File file, Module parent) {
        try {
            Properties docNodes = collectDocNodes(file);
            Module module = new Module(getModuleName(file), true, parent);
            Parser parser = new Parser();
            Node node = parser.parse(file.getName(), new FileReader(file), new ParserConfiguration());
            List<Node> defnNodes = findNodes(node, new INodeFilter() {

                public void visitStart(Node node) {
                }
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.