![JAR search and dependency download from the Maven repository](/logo.png)
net.fortuna.ical4j.extensions.link.Edit 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.link;
import net.fortuna.ical4j.model.LinkRelationType;
import net.fortuna.ical4j.model.parameter.LinkRel;
import net.fortuna.ical4j.model.property.Link;
import java.net.URI;
/**
* Refers to a resource that can be used to edit the link's context.
*
* See also Link Relations
*/
public class Edit extends Link {
public Edit(URI uri) {
super(uri);
add(new LinkRel(LinkRelationType.edit));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy