1
2 package org.catacomb.druid.gui.base;
3
4
5
6
7
8 public class DruAppletPrep extends DruRoot {
9
10 DruPanel druPanel;
11
12
13
14 public void setDruPanel(DruPanel dp) {
15 druPanel = dp;
16 }
17
18
19 public DruPanel getDruPanel() {
20 return druPanel;
21 }
22
23 }