In Action class [ActionSupport extended]
1.
equipmentSpeed is object (with get & set method in Action Class), which has
getDiscreteConstrains() method which returns
List<DiscreteConstrain> object.
DiscreteConstrain has
getPossibleValues() method which returns
List<String>
2. There is one more object
limitPossibleConstrains of class
DiscreteConstrain in Action.
I want to iterate over
equipmentSpeed.discreteConstrains and get
possibleValues which should be selected [checkboxes] and parent set(items of checkbox) should be
limitPossibleConstrains[i].possibleValues value
Please identify why following code is not working... [OR Suggest alternative solution..]