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

net.fortuna.ical4j.extensions.link.Edit Maven / Gradle / Ivy

There is a newer version: 2.0.0
Show newest version
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