firePropertyChange(JTaskPaneGroup.SPECIAL_CHANGED_KEY, !special, special);
}
}
public JTaskPaneGroup createTaskPaneGroup() {
JTaskPaneGroup taskpane = new JTaskPaneGroup();
taskpane.setExpanded(isExpanded());
taskpane.setTitle(getText());
taskpane.setAnimated(isAnimated());
taskpane.setScrollOnExpand(isScrollOnExpand());
taskpane.setSpecial(isSpecial());
if (isFaceConfigured()) {
taskpane.setToolTipText(getFaceDescriptor().getCaption());
}
for (Iterator members = actions.iterator(); members.hasNext();) {
ActionCommand member = (ActionCommand)members.next();
SwingActionAdapter adapter = new SwingActionAdapter(member);
taskpane.add(adapter);
}
return taskpane;
}