163
|
1 TreeButton = {
|
|
2 ACTIONS = {
|
|
3 };
|
|
4 OUTLETS = {
|
|
5 myTreeNode;
|
|
6 };
|
|
7 SUPERCLASS = Button;
|
|
8 };
|
|
9 TreeController = {
|
|
10 ACTIONS = {
|
|
11 info:;
|
|
12 open:;
|
|
13 };
|
|
14 OUTLETS = {
|
|
15 infoPanel;
|
|
16 openMenuItem;
|
|
17 treeView;
|
|
18 };
|
|
19 SUPERCLASS = Object;
|
|
20 };
|
|
21 Tree = {
|
|
22 ACTIONS = {
|
|
23 };
|
|
24 OUTLETS = {
|
|
25 label;
|
|
26 branches;
|
|
27 };
|
|
28 SUPERCLASS = Object;
|
|
29 };
|
|
30 FirstResponder = {
|
|
31 ACTIONS = {
|
|
32 };
|
|
33 SUPERCLASS = Object;
|
|
34 };
|
|
35 String = {
|
|
36 ACTIONS = {
|
|
37 setStringValue:;
|
|
38 concatenate:;
|
|
39 };
|
|
40 OUTLETS = {
|
|
41 };
|
|
42 SUPERCLASS = Object;
|
|
43 };
|
|
44 TreeView = {
|
|
45 ACTIONS = {
|
|
46 setCurrButtonByName:;
|
|
47 scale:;
|
|
48 };
|
|
49 OUTLETS = {
|
|
50 treeRoot;
|
|
51 lineList;
|
|
52 priorButton;
|
|
53 currentButton;
|
|
54 };
|
|
55 SUPERCLASS = View;
|
|
56 };
|