Source code: javax/ide/model/java/source/write/SingleTreeTransaction.java
1 /*
2 * @(#)MultiTreeTransaction.java
3 */
4
5 package javax.ide.model.java.source.write;
6
7 import javax.ide.model.java.source.tree.FileT;
8
9 /**
10 * A transaction on a single tree.
11 *
12 * @author Andy Yu
13 */
14 public interface SingleTreeTransaction
15 extends TreeTransaction
16 {
17 /**
18 * Gets the file involved in this transaction.
19 *
20 * @return The file involved in this transaction.
21 */
22 public FileT getFile();
23 }