Package: AnnotationPropertyAttributes
AnnotationPropertyAttributes
name | instruction | branch | complexity | line | method | ||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
AnnotationPropertyAttributes(FieldMappingValidator) |
|
|
|
|
|
||||||||||||||||||||
resolve(PropertyInfo, MetamodelBuilder, Class) |
|
|
|
|
|
||||||||||||||||||||
static {...} |
|
|
|
|
|
Coverage
1: /*
2: * JOPA
3: * Copyright (C) 2024 Czech Technical University in Prague
4: *
5: * This library is free software; you can redistribute it and/or
6: * modify it under the terms of the GNU Lesser General Public
7: * License as published by the Free Software Foundation; either
8: * version 3.0 of the License, or (at your option) any later version.
9: *
10: * This library is distributed in the hope that it will be useful,
11: * but WITHOUT ANY WARRANTY; without even the implied warranty of
12: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13: * Lesser General Public License for more details.
14: *
15: * You should have received a copy of the GNU Lesser General Public
16: * License along with this library.
17: */
18: package cz.cvut.kbss.jopa.model.metamodel;
19:
20: import cz.cvut.kbss.jopa.model.IRI;
21: import cz.cvut.kbss.jopa.model.annotations.OWLAnnotationProperty;
22:
23:
24: class AnnotationPropertyAttributes extends PropertyAttributes {
25:
26: AnnotationPropertyAttributes(FieldMappingValidator validator) {
27: super(validator);
28: }
29:
30: @Override
31: void resolve(PropertyInfo propertyInfo, MetamodelBuilder metamodelBuilder, Class<?> fieldValueCls) {
32: super.resolve(propertyInfo, metamodelBuilder, fieldValueCls);
33: final OWLAnnotationProperty oap = propertyInfo.getAnnotation(OWLAnnotationProperty.class);
34:• assert oap != null;
35:
36: this.persistentAttributeType = Attribute.PersistentAttributeType.ANNOTATION;
37: this.iri = IRI.create(typeBuilderContext.resolveNamespace(oap.iri()));
38: this.fetchType = oap.fetch();
39: this.type = BasicTypeImpl.get(fieldValueCls);
40: this.lexicalForm = oap.lexicalForm();
41: this.simpleLiteral = oap.simpleLiteral();
42: this.datatype = typeBuilderContext.resolveNamespace(oap.datatype());
43: this.language = resolveLanguage(fieldValueCls);
44: }
45: }