Package org.libreplan.business.planner.entities.allocationalgorithms

Examples of org.libreplan.business.planner.entities.allocationalgorithms.ResourcesPerDayModification


    public static List<ResourcesPerDayModification> createAndAssociate(
            Task task, Collection<? extends AllocationRow> rows,
            Collection<? extends ResourceAllocation<?>> requestedToRemove) {
        List<ResourcesPerDayModification> result = new ArrayList<ResourcesPerDayModification>();
        for (AllocationRow each : rows) {
            ResourcesPerDayModification modification = each
                    .toResourcesPerDayModification(task);
            result.add(modification);
            each.associateAllocationToModify(modification.getBeingModified());
        }
        setCustomAssignedEffortForResource(rows, requestedToRemove);
        return result;
    }
View Full Code Here

TOP

Related Classes of org.libreplan.business.planner.entities.allocationalgorithms.ResourcesPerDayModification

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.