![JAR search and dependency download from the Maven repository](/logo.png)
net.fortuna.ical4j.extensions.strategy.vtodo.Project Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ical4j-extensions Show documentation
Show all versions of ical4j-extensions Show documentation
Support for additional non-standard iCalendar objects
package net.fortuna.ical4j.extensions.strategy.vtodo;
import net.fortuna.ical4j.model.component.VJournal;
import net.fortuna.ical4j.model.component.VToDo;
import java.util.ArrayList;
import java.util.List;
public class Project {
private List objectives = new ArrayList<>();
private List milestones = new ArrayList<>();
private List tasks = new ArrayList<>();
private List risks = new ArrayList<>();
private List issues = new ArrayList<>();
public VToDo apply(VToDo vToDo) {
return vToDo;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy