Source code: javax/ide/model/java/source/write/MultiTreeTransaction.java
1 /*
2 * @(#)MultiTreeTransaction.java
3 */
4
5 package javax.ide.model.java.source.write;
6
7 import java.util.Collection;
8
9 /**
10 * A tree on multiple trees.
11 *
12 * @author Andy Yu
13 */
14 public interface MultiTreeTransaction
15 extends TreeTransaction
16 {
17 // ----------------------------------------------------------------------
18
19 /**
20 * Lists the files that have been changed so far.
21 *
22 * @return The collection of FileTs that have been changed so far. <p/>
23 *
24 * Collection of FileTs.
25 */
26 public Collection getFiles();
27 }