In Java fields must not start in uppercase.
FEA: ItEr62S05BugFixing
This commit is contained in:
parent
2b225b3d00
commit
ebea641c7a
1 changed files with 10 additions and 10 deletions
|
|
@ -56,9 +56,9 @@ public class LimitingResourcesTabCreator {
|
|||
}
|
||||
|
||||
private final Mode mode;
|
||||
private final LimitingResourcesController LimitingResourcesController;
|
||||
private final LimitingResourcesController limitingResourcesController;
|
||||
|
||||
private final LimitingResourcesController LimitingResourcesControllerGlobal;
|
||||
private final LimitingResourcesController limitingResourcesControllerGlobal;
|
||||
|
||||
private final Component breadcrumbs;
|
||||
|
||||
|
|
@ -67,8 +67,8 @@ public class LimitingResourcesTabCreator {
|
|||
LimitingResourcesController LimitingResourcesControllerGlobal,
|
||||
Component breadcrumbs) {
|
||||
this.mode = mode;
|
||||
this.LimitingResourcesController = LimitingResourcesController;
|
||||
this.LimitingResourcesControllerGlobal = LimitingResourcesControllerGlobal;
|
||||
this.limitingResourcesController = LimitingResourcesController;
|
||||
this.limitingResourcesControllerGlobal = LimitingResourcesControllerGlobal;
|
||||
this.breadcrumbs = breadcrumbs;
|
||||
}
|
||||
|
||||
|
|
@ -90,7 +90,7 @@ public class LimitingResourcesTabCreator {
|
|||
Map<String, Object> arguments = new HashMap<String, Object>();
|
||||
// LimitingResourcesController.add(upCommand);
|
||||
arguments.put("LimitingResourcesController",
|
||||
LimitingResourcesController);
|
||||
limitingResourcesController);
|
||||
return Executions.createComponents(
|
||||
"/limitingresources/_limitingresources.zul", parent,
|
||||
arguments);
|
||||
|
|
@ -111,8 +111,8 @@ public class LimitingResourcesTabCreator {
|
|||
.appendChild(new Label(ORDER_LIMITING_RESOURCES_VIEW));
|
||||
breadcrumbs.appendChild(new Image(BREADCRUMBS_SEPARATOR));
|
||||
Order currentOrder = mode.getOrder();
|
||||
LimitingResourcesController.filterBy(currentOrder);
|
||||
LimitingResourcesController.reload();
|
||||
limitingResourcesController.filterBy(currentOrder);
|
||||
limitingResourcesController.reload();
|
||||
breadcrumbs.appendChild(new Label(currentOrder.getName()));
|
||||
}
|
||||
};
|
||||
|
|
@ -127,7 +127,7 @@ public class LimitingResourcesTabCreator {
|
|||
org.zkoss.zk.ui.Component parent) {
|
||||
Map<String, Object> arguments = new HashMap<String, Object>();
|
||||
arguments.put("LimitingResourcesController",
|
||||
LimitingResourcesControllerGlobal);
|
||||
limitingResourcesControllerGlobal);
|
||||
return Executions.createComponents(
|
||||
"/limitingresources/_limitingresources.zul", parent,
|
||||
arguments);
|
||||
|
|
@ -139,8 +139,8 @@ public class LimitingResourcesTabCreator {
|
|||
componentCreator) {
|
||||
@Override
|
||||
protected void afterShowAction() {
|
||||
LimitingResourcesControllerGlobal.filterBy(null);
|
||||
LimitingResourcesControllerGlobal.reload();
|
||||
limitingResourcesControllerGlobal.filterBy(null);
|
||||
limitingResourcesControllerGlobal.reload();
|
||||
if (breadcrumbs.getChildren() != null) {
|
||||
breadcrumbs.getChildren().clear();
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue