Skip to content

Package: Individual

Individual

Coverage

1: package cz.cvut.kbss.jopa.model.annotations;
2:
3: import java.lang.annotation.*;
4:
5: /**
6: * Represents an OWL individual (or an RDF resource) identified by the specified IRI.
7: */
8: @Documented
9: @Retention(RetentionPolicy.RUNTIME)
10: @Target(ElementType.FIELD)
11: public @interface Individual {
12:
13: /**
14: * Identifier of this individual.
15: *
16: * @return IRI as string
17: */
18: String iri();
19: }