}
return true;
}
private ActionRetractFactCol52 cloneActionRetractColumn( ActionRetractFactCol52 col ) {
ActionRetractFactCol52 clone = null;
if ( col instanceof LimitedEntryCol ) {
clone = new LimitedEntryActionRetractFactCol52();
DTCellValue52 dcv = new DTCellValue52( ( (LimitedEntryCol) col ).getValue().getStringValue() );
( (LimitedEntryCol) clone ).setValue( dcv );
} else {
clone = new ActionRetractFactCol52();
}
clone.setHeader( col.getHeader() );
clone.setHideColumn( col.isHideColumn() );
return clone;
}