net.fortuna.ical4j.transform.component.AttendeeUpdate Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ical4j Show documentation
Show all versions of ical4j Show documentation
A Java library for reading and writing iCalendar (*.ics) files
package net.fortuna.ical4j.transform.component;
import net.fortuna.ical4j.model.Component;
import net.fortuna.ical4j.model.property.Attendee;
import net.fortuna.ical4j.transform.Transformer;
public class AttendeeUpdate implements Transformer {
private final Attendee attendee;
public AttendeeUpdate(Attendee attendee) {
this.attendee = attendee;
}
@Override
public Component transform(Component object) {
object.replace(attendee);
return object;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy