Menu

[r3852]: / branches / reducedRedone / ReducedModel.java  Maximize  Restore  History

Download this file

16 lines (11 with data), 291 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
import javax.swing.text.Document;
public class ReducedModel {
private RootBreaker root;
public ReducedModel() {
root = new RootBreaker();
}
public ReducedModel(Document doc) {
root = new RootBreaker(doc.getLength());
//TODO: parse document the create reduced model tree
}
}
MongoDB Logo MongoDB