Package vn

Examples of vn.SEMANTICS


                  .get(position);
              System.out.println("Verb : " + frameItem.pos.text);
            }
            position++;
          }
          SEMANTICS semantics = frame.getSEMANTICS();
          List<PRED> predicates = semantics.getPRED();
          for (PRED pred : predicates) {
            System.out.println("Predicate : " + pred.getValue());
            // TODO handle other predicates
            if (knownPredicates.contains(pred.getValue())) {
              return new VerbnetInfo(frame, pred);
View Full Code Here

TOP

Related Classes of vn.SEMANTICS

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.