View Javadoc

1   
2   package org.catacomb.druid.blocks;
3   
4   import org.catacomb.druid.build.Context;
5   import org.catacomb.druid.build.GUIPath;
6   import org.catacomb.druid.gui.base.DruDotsPanel;
7   import org.catacomb.druid.gui.base.DruPanel;
8   
9   
10  public class DashedLine extends Panel {
11  
12  
13      public String text;
14  
15      public String align;
16  
17      public String fontweight;
18  
19  
20  
21  
22      public DruPanel instantiatePanel() {
23          return new DruDotsPanel();
24      }
25  
26      public void populatePanel(DruPanel dp,Context ctx, GUIPath gpath) {
27      }
28  
29  
30  
31  }