private static List<DcTextPane> textPanes = new ArrayList<DcTextPane>();
private static List<DcPictureField> pictureFields = new ArrayList<DcPictureField>();
public static DcTextPane getTextPane() {
DcTextPane tp = textPanes.size() > 0 ? textPanes.remove(0) : ComponentFactory.getTextPane();
tp.setFont(ComponentFactory.getStandardFont());
return tp;
}