Package org.libreplan.web.planner.allocation.AdvancedAllocationController

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


    }

    private AllocationInput createAllocationInputFor(
            PlanningState planningState, Task task) {
        ResultReceiver resultReceiver = new ResultReceiver(planningState, task);
        return new AllocationInput(resultReceiver.getAggregate(), task,
                resultReceiver);
    }
View Full Code Here


    }

    private List<AllocationInput> asAllocationInput(
            AllocationResult allocationResult,
            IAdvanceAllocationResultReceiver resultReceiver) {
        return Collections.singletonList(new AllocationInput(allocationResult
                .getAggregate(), allocationResult.getTask(), resultReceiver));
    }
View Full Code Here

TOP

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

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.