View Javadoc

1   
2   package org.catacomb.druid.gui.base;
3   
4   import org.catacomb.interlish.structure.ControllerSpecifier;
5   import org.catacomb.interlish.structure.Documented;
6   
7   
8   public class DruRoot implements ControllerSpecifier, Documented {
9   
10      public String name;
11  
12      public String documentation;
13  
14      public String controllerPath;
15  
16      public void setControllerPath(String s) {
17          controllerPath = s;
18      }
19  
20      public String getControllerPath() {
21          return controllerPath;
22      }
23  
24  
25  
26      public void setName(String s) {
27          name = s;
28      }
29  
30      public String getName() {
31          return name;
32      }
33  
34      public void setDoc(String s) {
35          documentation = s;
36      }
37  
38      public String getDoc() {
39          return documentation;
40      }
41  
42  }