* date, integer, double, boolean). A default value is also set.
*/
public void addNewCustomColumn(CustomColumn customColumn) {
if (customColumn == null) {
customColumn = new CustomColumn();
GanttDialogCustomColumn d = new GanttDialogCustomColumn(myUIfacade, customColumn);
d.setVisible(true);
}
if (customColumn.getName() != null) // if something has been entered
{
GanttTreeTableModel treeTableModel = (GanttTreeTableModel) getTreeTableModel();