public Bottom() {
// Explicitly call the superclass constructor to prevent the implicit call
super();
this.initialize();
Array_Of_ClassNode<ClassNode> nodes = new Array_Of_ClassNode<ClassNode>();
this.setRightTree(new ClassNode(true, true, true));
this.setTree(new DisplayNode(true, true, true, DisplayNode.qq_Resolver.cISFILLED_ISFOLDER_ISOPENED));
this.setLv(new ClassNode(true, true));
for (int i = 1; i <= 50; i++) {
TextData t = new TextData("AAA");
nodes.set(i-1, new ClassNode(t.concat(i), i*2));
}
this.getqq_lv().setViewNodes((Array_Of_DisplayNode)nodes);
nodes = new Array_Of_ClassNode<ClassNode>();
for (int i = 1; i <= 50; i++) {
TextData t = new TextData("BBB");
nodes.set(i-1, new ClassNode(t.concat(i), i*2));
nodes.get(i-1).setParent(this.getRightTree());
}
for (int i = 1; i <= 50; i++) {
TextData t = new TextData("CCC");
nodes.set(i-1, new ClassNode(t.concat(i), i*2));
nodes.get(i-1).setParent(this.getTree());
}
this.setDf(new TextData());
this.setTf(new TextData());