![JAR search and dependency download from the Maven repository](/logo.png)
net.fortuna.ical4j.extensions.model.link.Help 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.model.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 context-sensitive help.
*
* See also Link Relations
*/
public class Help extends Link {
public Help(URI uri) {
super(uri);
add(new LinkRel(LinkRelationType.help));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy