Callback | IlvGadgetContainer(String name,
String title,
IlvRect position,
Boolean useacc = true,
IlvAbstractView transientFor = 0) | You can create an IlvGadgetContainer by specifying the name , the title and the position of the new panel. For example:
mypanel = new IlvGadgetContainer("panel", "My Panel",
new IlvRect(16, 16, 600, 400));
If you set ussacc to true , the new panel uses the default accelerators of IlvGadgetContainer . The transientFor parameter is used to pass the parent of the new panel. If this parameter is omitted, a top level panel is created.
Once a new panel has been created, add it to Application by calling the addPanel method like this:
Application.addPanel(mypanel);
The name of each panel in an application must be unique. | |