01: package jaxx.tools.jaxxcapture.handlers;
02:
03: import jaxx.tools.jaxxcapture.*;
04:
05: public class TableHandler extends ObjectHandler {
06: protected CapturedObject createCapturedObject(String className,
07: JAXXCapture capture) {
08: CapturedObject result = new CapturedObject(this ,
09: "javax.swing.JPanel", capture);
10: result.setProperty("layout", "{new GridBagLayout()}");
11: return result;
12: }
13: }
|