
net.fortuna.ical4j.extensions.strategy.note.Objective 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
The newest version!
package net.fortuna.ical4j.extensions.strategy.note;
import net.fortuna.ical4j.extensions.strategy.AbstractStrategy;
import net.fortuna.ical4j.model.component.VJournal;
public class Objective extends AbstractStrategy {
@Override
public VJournal get() {
VJournal vJournal = getPrototype().isPresent() ? getPrototype().get().copy() : new VJournal();
return vJournal;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy