Example usage for edu.stanford.nlp.trees Tree transform

List of usage examples for edu.stanford.nlp.trees Tree transform

Introduction

In this page you can find the example usage for edu.stanford.nlp.trees Tree transform.

Prototype

public Tree transform(final TreeTransformer transformer) 

Source Link

Document

Create a transformed Tree.

Usage

From source file:elkfed.coref.mentions.AbstractMentionFactory.java

License:Apache License

private Tree postProcess(Tree tree) {
    TreeTransformer normaliser = new PossessivePronounTransformer();
    return tree.transform(normaliser);
}