View Javadoc

1   
2   package org.catacomb.druid.gui.base;
3   
4   import org.catacomb.druid.swing.DDotsPanel;
5   
6   import java.awt.Color;
7   
8   
9   public class DruDotsPanel extends DruPanel {
10      static final long serialVersionUID = 1001;
11  
12      DDotsPanel ddp;
13  
14      public DruDotsPanel() {
15          setSingle();
16          ddp = new DDotsPanel();
17          addDComponent(ddp);
18          addBorder(2, 2, 14, 0);
19      }
20  
21  
22      public void setBg(Color c) {
23          ddp.setBg(c);
24      }
25  
26  
27  }