Skip to content

Package: Vocabulary

Vocabulary

nameinstructionbranchcomplexitylinemethod
Vocabulary()
M: 6 C: 0
0%
M: 0 C: 0
100%
M: 1 C: 0
0%
M: 2 C: 0
0%
M: 1 C: 0
0%

Coverage

1: /**
2: * Copyright (C) 2016 Czech Technical University in Prague
3: *
4: * This program is free software: you can redistribute it and/or modify it under
5: * the terms of the GNU General Public License as published by the Free Software
6: * Foundation, either version 3 of the License, or (at your option) any
7: * later version.
8: *
9: * This program is distributed in the hope that it will be useful, but WITHOUT
10: * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11: * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
12: * details. You should have received a copy of the GNU General Public License
13: * along with this program. If not, see <http://www.gnu.org/licenses/>.
14: */
15: package cz.cvut.kbss.jopa.test;
16:
17: public class Vocabulary {
18:
19: public static final String CLASS_IRI_BASE = "http://krizik.felk.cvut.cz/ontologies/jopa/entities#";
20: public static final String ATTRIBUTE_IRI_BASE = "http://krizik.felk.cvut.cz/ontologies/jopa/attributes#";
21:
22: public static final String C_OWL_CLASS_A = CLASS_IRI_BASE + "OWLClassA";
23: public static final String C_OWL_CLASS_B = CLASS_IRI_BASE + "OWLClassB";
24: public static final String C_OWL_CLASS_M = CLASS_IRI_BASE + "OWLClassM";
25: public static final String C_OWL_CLASS_S = CLASS_IRI_BASE + "OWLClassS";
26: public static final String C_OWL_CLASS_T = CLASS_IRI_BASE + "OWLClassT";
27: public static final String C_OWL_CLASS_U = CLASS_IRI_BASE + "OWLClassU";
28: public static final String C_OWL_CLASS_Q = CLASS_IRI_BASE + "OWLClassQ";
29: public static final String C_OWL_CLASS_S_PARENT = CLASS_IRI_BASE + "OWLClassSParent";
30:
31: public static final String p_m_booleanAttribute = ATTRIBUTE_IRI_BASE + "m-booleanAttribute";
32: public static final String p_m_intAttribute = ATTRIBUTE_IRI_BASE + "m-intAttribute";
33: public static final String p_m_longAttribute = ATTRIBUTE_IRI_BASE + "m-longAttribute";
34: public static final String p_m_doubleAttribute = ATTRIBUTE_IRI_BASE + "m-doubleAttribute";
35: public static final String p_m_dateAttribute = ATTRIBUTE_IRI_BASE + "m-dateAttribute";
36: public static final String p_m_enumAttribute = ATTRIBUTE_IRI_BASE + "m-enumAttribute";
37: public static final String p_m_IntegerSet = ATTRIBUTE_IRI_BASE + "m-pluralIntAttribute";
38:
39: public static final String P_A_STRING_ATTRIBUTE = ATTRIBUTE_IRI_BASE + "A-stringAttribute";
40: public static final String P_B_STRING_ATTRIBUTE = ATTRIBUTE_IRI_BASE + "B-stringAttribute";
41:
42: public static final String P_T_INTEGER_ATTRIBUTE = ATTRIBUTE_IRI_BASE + "T-integerAttribute";
43: public static final String P_HAS_OWL_CLASS_A = ATTRIBUTE_IRI_BASE + "hasOwlClassA";
44:
45: public static final String P_Q_PARENT_STRING_ATTRIBUTE = ATTRIBUTE_IRI_BASE + "QParent-stringAttribute";
46: public static final String P_Q_STRING_ATTRIBUTE = ATTRIBUTE_IRI_BASE + "Q-stringAttribute";
47:
48: public static final String P_HAS_OWL_CLASS_S = ATTRIBUTE_IRI_BASE + "hasOwlClassS";
49:
50: private Vocabulary() {
51: throw new AssertionError();
52: }
53: }