Package translation.trees

Examples of translation.trees.GornAddress


    for (ElementaryTree tree : sourceTrees)
      if (tree.getRootCat().equals(getDottedNode().getCat()) &&
          (! tree.isAuxiliary())) {
        Item it =
          new Item(tree, new GornAddress(),
              DotPos.LEFT_ABOVE, currentStateNum);
        it.addContextItem(this);
        newItems.add(it);
      }
    return newItems;
View Full Code Here


    for (ElementaryTree tree : sourceTrees)
      if (tree.getRootCat().equals(getDottedNode().getCat())
          && getTree().getAuxType() == AuxType.LEFT_ADJTYPE) {
        Item adjoinable =
          new Item(tree, new GornAddress(),
              DotPos.LEFT_ABOVE, currentStateNum);

        adjoinable.addContextItem(this);
        newItems.add(adjoinable);
      }
View Full Code Here

  public void buildInitialItems() {
    for (ElementaryTree tree : sourceTrees)
      if (tree.getRootCat().equals("S")) {
        Item it = new Item(
            tree,
            new GornAddress(), //dot=0. Pas tree.getRootAddress()!
            DotPos.LEFT_ABOVE,
            0);
        items.add(it);
      }
  }
View Full Code Here

TOP

Related Classes of translation.trees.GornAddress

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.