Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
CityDoctor
CityDoctor2
Commits
03fbe199
Commit
03fbe199
authored
Mar 12, 2026
by
Luna Riegel
Browse files
Refactor: Unify and generalize CityGml3FeatureMapper
parent
8abf5e03
Pipeline
#12357
failed with stage
in 1 minute and 17 seconds
Changes
2
Pipelines
1
Expand all
Hide whitespace changes
Inline
Side-by-side
CityDoctorParent/CityDoctorModel/src/main/java/de/hft/stuttgart/citydoctor2/datastructure/TunnelPart.java
View file @
03fbe199
...
...
@@ -9,18 +9,17 @@ public class TunnelPart extends AbstractTunnel {
private
Tunnel
parent
;
private
TunnelPart
()
{
}
public
TunnelPart
(
Tunnel
parent
)
{
this
.
parent
=
parent
;
parent
.
addTunnelPart
(
this
);
public
TunnelPart
()
{
}
public
Tunnel
getParent
()
{
return
parent
;
}
public
void
setParent
(
Tunnel
parent
)
{
this
.
parent
=
parent
;
}
@Override
public
CityObject
getTopLevelCityObject
()
{
return
getParent
().
getTopLevelCityObject
();
...
...
CityDoctorParent/CityDoctorModel/src/main/java/de/hft/stuttgart/citydoctor2/mapper/citygml3/Citygml3FeatureMapper.java
View file @
03fbe199
This diff is collapsed.
Click to expand it.
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