Package org.libreplan.web.planner.allocation

Examples of org.libreplan.web.planner.allocation.AdvancedAllocationController


    }


    private Map<String, Object> argsWithController(PlanningState planningState) {
        Map<String, Object> result = new HashMap<String, Object>();
        advancedAllocationController = new AdvancedAllocationController(
                planningState.getOrder(), onBack,
                createAllocationInputsFor(planningState));
        result.put("advancedAllocationController", advancedAllocationController);
        return result;
    }
View Full Code Here


    private Map<String, Object> createArgsForAdvancedAllocation(Order order,
            AllocationResult allocationResult,
            IAdvanceAllocationResultReceiver resultReceiver) {
        Map<String, Object> result = new HashMap<String, Object>();
        result.put("advancedAllocationController",
                new AdvancedAllocationController(order, createBack(),
                        asAllocationInput(allocationResult, resultReceiver)));
        return result;
    }
View Full Code Here

TOP

Related Classes of org.libreplan.web.planner.allocation.AdvancedAllocationController

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.