View Javadoc

1   package org.catacomb.druid.gui.base;
2   
3   
4   import org.catacomb.interlish.structure.IDable;
5   
6   
7   public class DruAutonomousPanel extends DruRoot
8       implements PanelWrapper, IDable {
9   
10  
11      DruPanel mainPanel;
12  
13  
14      String id; // this is the ide seen by the parent app - used to access this panel
15  
16  
17  
18      public void setID(String s) {
19          id = s;
20      }
21  
22  
23      public String getID() {
24          return id;
25      }
26  
27  
28      public void setMainPanel(DruPanel dp) {
29          mainPanel = dp;
30      }
31  
32  
33      public DruPanel getPanel() {
34          return mainPanel;
35      }
36  
37  
38  }