All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.fortuna.ical4j.extensions.strategy.action.Backlog Maven / Gradle / Ivy

The newest version!
package net.fortuna.ical4j.extensions.strategy.action;

import net.fortuna.ical4j.extensions.strategy.AbstractStrategy;
import net.fortuna.ical4j.model.component.VToDo;

import java.util.ArrayList;
import java.util.List;

/**
 * A collection of work items, typically associated with a Sprint or higher level objective.
 */
public class Backlog extends AbstractStrategy {

    private final List stories = new ArrayList<>();

    @Override
    public VToDo get() {
        VToDo vToDo = getPrototype().isPresent() ? getPrototype().get().copy() : new VToDo();
        return vToDo;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy