a b/src/test/resources/test_ab3.owl
1
<?xml version="1.0"?>
2
3
4
<!DOCTYPE Ontology [
5
    <!ENTITY xsd "http://www.w3.org/2001/XMLSchema#" >
6
    <!ENTITY xml "http://www.w3.org/XML/1998/namespace" >
7
    <!ENTITY rdfs "http://www.w3.org/2000/01/rdf-schema#" >
8
    <!ENTITY rdf "http://www.w3.org/1999/02/22-rdf-syntax-ns#" >
9
]>
10
11
12
<Ontology xmlns="http://www.w3.org/2002/07/owl#"
13
     xml:base="http://localhost/test_ab3.owl"
14
     xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
15
     xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
16
     xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
17
     xmlns:xml="http://www.w3.org/XML/1998/namespace"
18
     ontologyIRI="http://localhost/test_ab3.owl">
19
    <Prefix name="rdf" IRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#"/>
20
    <Prefix name="rdfs" IRI="http://www.w3.org/2000/01/rdf-schema#"/>
21
    <Prefix name="xsd" IRI="http://www.w3.org/2001/XMLSchema#"/>
22
    <Prefix name="owl" IRI="http://www.w3.org/2002/07/owl#"/>
23
    <Import>http://localhost/test_ab1.owl</Import>
24
    <Import>http://localhost/test_ab2.owl</Import>
25
    <Declaration>
26
        <Class IRI="#ClassD"/>
27
    </Declaration>
28
    <Declaration>
29
        <NamedIndividual IRI="#IndivD"/>
30
     </Declaration>
31
   <ClassAssertion>
32
        <Class IRI="#ClassD"/>
33
        <NamedIndividual IRI="#IndivD"/>
34
    </ClassAssertion>
35
36
</Ontology>
37
38
39
40
<!-- Generated by the OWL API (version 3.4.2) http://owlapi.sourceforge.net -->
41