ntainer to put all JXTaskPane together JXTaskPaneContainer taskPaneContainer = new JXTaskPaneContainer(); // add JXTaskPanes to the container JXTaskPane actionPane = createActionPane(); JXTaskPane miscActionPane = createMiscActionPane(); JXTaskPane detailsPane = createDetailsPane(); taskPaneContainer.add(actionPane); taskPaneContainer.add(miscActionPane); taskPaneContainer.add(detailsPane); // put the action list on the left in a JScrollPane // as we have several taskPane and we want to make sure they // all get visible. frame.add(new JScrollPane(taskPaneContainer), BorderLayout.EAST); // and a file browser in the middle frame.add(fileBrowser, BorderLayout.CENTER); frame.pack(). frame.setVisible(true);
@author
Frederic Lavigne
@javabean.attribute name="isContainer" value="Boolean.TRUE" rtexpr="true"
@javabean.class name="JXTaskPaneContainer" shortDescription="A component that contains JTaskPaneGroups." stopClass="java.awt.Component"
@javabean.icons mono16="JXTaskPaneContainer16-mono.gif" color16="JXTaskPaneContainer16.gif" mono32="JXTaskPaneContainer32-mono.gif" color32="JXTaskPaneContainer32.gif"