public class BoundaryRemover extends Object implements TreeTransformer
| Constructor and Description |
|---|
BoundaryRemover() |
public Tree transformTree(Tree tree)
TreeTransformerTree, and could itself
work recursively, but the canonical usage is to invoke this method
via the Tree.transform() method, which will apply the
transformer in a bottom-up manner to each local Tree,
and hence the implementation of TreeTransformer should
merely examine and change a local (one-level) Tree.transformTree in interface TreeTransformertree - A tree. Classes implementing this interface can assume
that the tree passed in is not null.Tree