Skip to content

Package: OWLClassS

OWLClassS

nameinstructionbranchcomplexitylinemethod
OWLClassS()
M: 0 C: 3
100%
M: 0 C: 0
100%
M: 0 C: 1
100%
M: 0 C: 1
100%
M: 0 C: 1
100%
getDescription()
M: 0 C: 13
100%
M: 0 C: 0
100%
M: 0 C: 1
100%
M: 0 C: 1
100%
M: 0 C: 1
100%
getName()
M: 0 C: 13
100%
M: 0 C: 0
100%
M: 0 C: 1
100%
M: 0 C: 1
100%
M: 0 C: 1
100%
getTypes()
M: 0 C: 13
100%
M: 0 C: 0
100%
M: 0 C: 1
100%
M: 0 C: 1
100%
M: 0 C: 1
100%
setDescription(String)
M: 0 C: 21
100%
M: 0 C: 0
100%
M: 0 C: 1
100%
M: 0 C: 2
100%
M: 0 C: 1
100%
setName(String)
M: 0 C: 21
100%
M: 0 C: 0
100%
M: 0 C: 1
100%
M: 0 C: 2
100%
M: 0 C: 1
100%
setTypes(Set)
M: 0 C: 21
100%
M: 0 C: 0
100%
M: 0 C: 1
100%
M: 0 C: 2
100%
M: 0 C: 1
100%
static {...}
M: 0 C: 2
100%
M: 0 C: 0
100%
M: 0 C: 1
100%
M: 0 C: 1
100%
M: 0 C: 1
100%

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: import cz.cvut.kbss.jopa.CommonVocabulary;
18: import cz.cvut.kbss.jopa.model.annotations.OWLAnnotationProperty;
19: import cz.cvut.kbss.jopa.model.annotations.OWLClass;
20: import cz.cvut.kbss.jopa.model.annotations.OWLDataProperty;
21: import cz.cvut.kbss.jopa.model.annotations.Types;
22:
23: import java.util.Set;
24:
25: @OWLClass(iri = Vocabulary.C_OWL_CLASS_S)
26: public class OWLClassS extends OWLClassSParent {
27:
28: @OWLAnnotationProperty(iri = CommonVocabulary.RDFS_LABEL)
29: private String name;
30:
31: @OWLDataProperty(iri = CommonVocabulary.DC_DESCRIPTION)
32: private String description;
33:
34: @Types
35: private Set<String> types;
36:
37: public String getName() {
38: return name;
39: }
40:
41: public void setName(String name) {
42: this.name = name;
43: }
44:
45: public String getDescription() {
46: return description;
47: }
48:
49: public void setDescription(String description) {
50: this.description = description;
51: }
52:
53: public Set<String> getTypes() {
54: return types;
55: }
56:
57: public void setTypes(Set<String> types) {
58: this.types = types;
59: }
60: }