1
2 package org.catacomb.dataview.build;
3
4
5 import org.catacomb.druid.build.Context;
6 import org.catacomb.druid.gui.base.DruPanel;
7 import org.catacomb.report.E;
8
9
10
11 public class DVPanel {
12
13 public String title;
14 public int width;
15 public int height;
16
17
18 public DruPanel makePanel(Context ctxt) {
19 E.error("override needed in " + this);
20 return null;
21 }
22
23
24 }