Fix the type parameter

The zk's one must be used instead of the spring's one.

FEA: ItEr68S04BugFixing
This commit is contained in:
Óscar González Fernández 2011-01-10 18:37:46 +01:00
parent cbd5f93e53
commit 14640be74a

View file

@ -170,7 +170,8 @@ public class MonteCarloController extends GenericForwardComposer {
Rows rows = gridCriticalPathTasks.getRows();
for (Object each : rows.getChildren()) {
Row row = (Row) each;
List<Component> children = row.getChildren();
List<org.zkoss.zk.ui.Component> children = row
.getChildren();
Integer sum = 0;
intbox = (Intbox) children.get(3);