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.DruPanel; 7 8 9 public class ContainerPanel extends Panel { 10 11 12 public String text; 13 14 15 16 public DruPanel instantiatePanel() { 17 DruPanel drup = new DruPanel(); 18 return drup; 19 } 20 21 22 23 public void populatePanel(DruPanel drup, Context ctx, GUIPath gpath) { 24 25 } 26 27 }