In Java fields must not start in uppercase.

FEA: ItEr62S05BugFixing
This commit is contained in:
Óscar González Fernández 2010-10-25 17:26:39 +02:00
parent 2b225b3d00
commit ebea641c7a

View file

@ -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();
}