Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
CityDoctor
QualityADE
Commits
b378cf3d
Commit
b378cf3d
authored
Apr 04, 2022
by
Claus Nagel
Browse files
adapted ValidationProperty to be inline-or-by-reference
parent
07934cf2
Changes
1
Show whitespace changes
Inline
Side-by-side
citygml4j-quality-ade/src/main/java/de/hft/stuttgart/quality/model/properties/ValidationProperty.java
View file @
b378cf3d
...
...
@@ -15,14 +15,13 @@
*/
package
de.hft.stuttgart.quality.model.properties
;
import
java.io.Serial
;
import
de.hft.stuttgart.quality.model.types.Validation
;
import
org.citygml4j.core.model.ade.ADEObject
;
import
org.xmlobjects.gml.model.base.AbstractInlineProperty
;
import
org.xmlobjects.gml.model.base.AbstractInline
OrByReference
Property
;
import
de.hft.stuttgart.quality.model.types.Validation
;
import
java.io.Serial
;
public
class
ValidationProperty
extends
AbstractInlineProperty
<
Validation
>
implements
ADEObject
{
public
class
ValidationProperty
extends
AbstractInline
OrByReference
Property
<
Validation
>
implements
ADEObject
{
@Serial
private
static
final
long
serialVersionUID
=
3423466580266018906L
;
...
...
@@ -31,8 +30,12 @@ public class ValidationProperty extends AbstractInlineProperty<Validation> imple
super
();
}
public
ValidationProperty
(
Validation
v
)
{
super
(
v
);
public
ValidationProperty
(
Validation
object
)
{
super
(
object
);
}
public
ValidationProperty
(
String
href
)
{
super
(
href
);
}
@Override
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment