Added throws statement
* As a result of upgrading to ZK 5.0.3 new exception handling statemens were required at AssignedTaskQualityFormsToOrderElementController FEA: ItEr02S03MigracionZK5
This commit is contained in:
parent
b1382122f2
commit
1cd5265481
1 changed files with 6 additions and 3 deletions
|
|
@ -315,14 +315,16 @@ public class AssignedTaskQualityFormsToOrderElementController extends
|
|||
}
|
||||
}
|
||||
|
||||
private void appendDetails(Row row, TaskQualityForm taskQualityForm) {
|
||||
private void appendDetails(Row row, TaskQualityForm taskQualityForm)
|
||||
throws ClassNotFoundException, InstantiationException, IllegalAccessException {
|
||||
Detail details = new Detail();
|
||||
details.setParent(row);
|
||||
details.appendChild(appendGridItems(row, taskQualityForm));
|
||||
details.setOpen(false);
|
||||
}
|
||||
|
||||
private Grid appendGridItems(Row row, TaskQualityForm taskQualityForm) {
|
||||
private Grid appendGridItems(Row row, TaskQualityForm taskQualityForm)
|
||||
throws ClassNotFoundException, InstantiationException, IllegalAccessException {
|
||||
Grid gridItems = new Grid();
|
||||
|
||||
gridItems.setMold("paging");
|
||||
|
|
@ -338,7 +340,8 @@ public class AssignedTaskQualityFormsToOrderElementController extends
|
|||
return gridItems;
|
||||
}
|
||||
|
||||
private void renderColumns(Grid gridItems) {
|
||||
private void renderColumns(Grid gridItems)
|
||||
throws ClassNotFoundException, InstantiationException, IllegalAccessException {
|
||||
|
||||
Columns columns = gridItems.getColumns();
|
||||
// Create listhead first time is rendered
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue