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