com.github.anno4j.model.Motivation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of anno4j-core Show documentation
Show all versions of anno4j-core Show documentation
Read and write API for W3C Web Annotation Data Model (http://www.w3.org/TR/annotation-model/) and W3C Open Annotation Data Model (http://www.openannotation.org/spec/core/)
package com.github.anno4j.model;
import com.github.anno4j.Anno4j;
import com.github.anno4j.model.impl.ResourceObject;
import org.openrdf.model.Resource;
import org.openrdf.repository.object.ObjectConnection;
import org.openrdf.repository.object.RDFObject;
/**
* Conforms to OADM Motivation (http://www.openannotation.org/spec/core/core.html#Motivations)
*/
public abstract class Motivation extends ResourceObject {
/**
* Standard constructor.
*/
public Motivation() {}
@Override
public String toString() {
return "Motivation{" +
"resource='" + this.getResource() + "'" +
"}";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy