Export a single tree @param tree @throws java.io.IOException
(Tree tree)
| 80 | * @throws java.io.IOException |
| 81 | */ |
| 82 | @Override |
| 83 | public void exportTree(Tree tree) throws IOException { |
| 84 | java.util.List<Tree> trees = new ArrayList<Tree>(); |
| 85 | trees.add(tree); |
| 86 | exportTrees(trees); |
| 87 | } |
| 88 | |
| 89 | private void writeTrees(Collection<? extends Tree> trees) throws IOException { |
| 90 | int indent = 0; |
nothing calls this directly
no test coverage detected