Examples of Node


Examples of com.aspose.words.Node

  {
    Document doc = new Document("data/document.doc");
    DocumentBuilder builder = new DocumentBuilder(doc);

    //Shows how to access the current node in a document builder.
    Node curNode = builder.getCurrentNode();
    Paragraph curParagraph = builder.getCurrentParagraph();
   
    // Shows how to move a cursor position to a specified node.
    builder.moveTo(doc.getFirstSection().getBody().getLastParagraph());
   

Examples of com.atilika.kuromoji.trie.Trie.Node

public class TrieTest {

    @Test
    public void testGetRoot() {
        Trie trie = new Trie();
        Node rootNode = trie.getRoot();
        assertNotNull(rootNode);
    }

Examples of com.atlantbh.jmeter.plugins.hbasecomponents.utils.filter.Node

  private static final String HBS_OMITVARS = "HBS_OMITVARS";
  private static final String HBS_LATEST_TIMESTAMP_ROWS = "HBS_LATEST_TIMESTAMP_ROWS";

  public static void main(String[] args) throws Exception {
    String filter = "OPERATIONAL:JOB_ID=job_201104141652_2429";
    Node node = FilterParser.parse(filter);
    Filter fil = HBaseFilterParser.parse(node);
  }

Examples of com.badlogic.gdx.graphics.g3d.model.Node

  }

  /** Add a node to the model. Use any of the part(...) method to add a NodePart.
   * @return The node being created. */
  public Node node () {
    final Node node = new Node();
    node(node);
    node.id = "node" + model.nodes.size;
    return node;
  }

Examples of com.bazaarvoice.jless.ast.node.Node

        boolean founded;

        do {
            founded = false;
            for (int i = 0; i < children.size(); i++) {
                Node child = children.get(i);
                if (targetClass.isInstance(child)) {
                    //noinspection unchecked
                    filteredChildren.add((C) child);
                    parent.removeChild(i);
                    founded = true;

Examples of com.betfair.platform.virtualheap.Node

  @Override

    public T get(String key) {

    Node value = node.getField(key);

    if (value!=null) {

      return value.project(valueProjector);

    } else {

      return null;

Examples of com.blazebit.regex.node.Node

    return rootNode;
  }

  private Node parseTerm() {
    Node e = parseRepeat();

    if (hasNext() && !peek(")|")) {
      e.setNext(parseTerm());
    }

    return e;
  }

Examples of com.bulletphysics.collision.broadphase.Dbvt.Node

    }
   
    if (root != null && (passes > 0)) {
      Node[] root_ref = new Node[1];
      do {
        Node node = root;
        int bit = 0;
        while (node.isinternal()) {
          root_ref[0] = root;
          node = sort(node, root_ref).childs[(opath >>> bit) & 1];
          root = root_ref[0];
         
          bit = (bit + 1) & (/*sizeof(unsigned)*/4 * 8 - 1);

Examples of com.carrotsearch.randomizedtesting.FilterExpressionParser.Node

      @SuppressWarnings("unchecked")
      Vector<Variable> vv = getCommandline().getSystemProperties().getVariablesVector();
      for (Variable v : vv) {
        if (SysGlobals.SYSPROP_TESTFILTER().equals(v.getKey())) {
          try {
            Node root = new FilterExpressionParser().parse(v.getValue());
            log("Parsed test filtering expression: " + root.toExpression(), Project.MSG_INFO);
          } catch (Exception e) {
            log("Could not parse filtering expression: " + v.getValue(), Project.MSG_WARN);
          }
        }
      }

Examples of com.cedarsoft.commons.struct.Node

  public Node findNode( @NotNull Path path ) throws ChildNotFoundException {
    if ( !path.isAbsolute() ) {
      throw new IllegalArgumentException( "Path must be absolute to be resolved within the repository" );
    }

    Node current = getRootNode();
    for ( String element : path.getElements() ) {
      current = findChild( current, element );
    }
    return current;
  }
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.