Write generic info on (nested) elements @param w @param con @param iri
(XMLStreamWriter w, RepositoryConnection con, IRI iri)
| 203 | * @param iri |
| 204 | */ |
| 205 | private static void writeGenericInfo(XMLStreamWriter w, RepositoryConnection con, IRI iri) throws XMLStreamException { |
| 206 | writeReferences(w, con, iri, DCTERMS.TYPE, "dct:type"); |
| 207 | writeLiterals(w, con, iri, DCTERMS.TITLE, "dct:title"); |
| 208 | writeLiterals(w, con, iri, DCTERMS.DESCRIPTION, "dct:description"); |
| 209 | writeLiterals(w, con, iri, RDFS.LABEL, "rdfs:label"); |
| 210 | writeLiterals(w, con, iri, SKOS.NOTATION, "skos:notation"); |
| 211 | } |
| 212 | |
| 213 | /** |
| 214 | * Write multiple literals |
no test coverage detected