Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
raspberry
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
af3
raspberry
Commits
498eb704
Commit
498eb704
authored
6 years ago
by
Johannes Eder
Browse files
Options
Downloads
Patches
Plain Diff
modelement factory for additional v2v elements
parent
3bd0605d
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
org.fortiss.af3.platform.raspberry/src/org/fortiss/af3/platform/raspberry/util/RaspberryModelElementFactory.java
+40
-3
40 additions, 3 deletions
...platform/raspberry/util/RaspberryModelElementFactory.java
with
40 additions
and
3 deletions
org.fortiss.af3.platform.raspberry/src/org/fortiss/af3/platform/raspberry/util/RaspberryModelElementFactory.java
+
40
−
3
View file @
498eb704
...
...
@@ -86,14 +86,19 @@ import org.fortiss.af3.platform.raspberry.model.v2v.V2VFollowerInput;
import
org.fortiss.af3.platform.raspberry.model.v2v.V2VFollowerOutput
;
import
org.fortiss.af3.platform.raspberry.model.v2v.V2VFusePlatoonInput
;
import
org.fortiss.af3.platform.raspberry.model.v2v.V2VFusePlatoonOutput
;
import
org.fortiss.af3.platform.raspberry.model.v2v.V2VHandshakeInput
;
import
org.fortiss.af3.platform.raspberry.model.v2v.V2VHandshakeOutput
;
import
org.fortiss.af3.platform.raspberry.model.v2v.V2VLeaderHeartbeatInput
;
import
org.fortiss.af3.platform.raspberry.model.v2v.V2VLeaderHeartbeatOutput
;
import
org.fortiss.af3.platform.raspberry.model.v2v.V2VLeaderUIDOutput
;
import
org.fortiss.af3.platform.raspberry.model.v2v.V2VLeavePlatoonInput
;
import
org.fortiss.af3.platform.raspberry.model.v2v.V2VLeavePlatoonOutput
;
import
org.fortiss.af3.platform.raspberry.model.v2v.V2VLocalUIDOutput
;
import
org.fortiss.af3.platform.raspberry.model.v2v.V2VNewLeaderInput
;
import
org.fortiss.af3.platform.raspberry.model.v2v.V2VNewLeaderOutput
;
import
org.fortiss.af3.platform.raspberry.model.v2v.V2VPlatoonInput
;
import
org.fortiss.af3.platform.raspberry.model.v2v.V2VPlatoonOutput
;
import
org.fortiss.af3.platform.raspberry.model.v2v.V2VPrecedingUIDOuput
;
import
org.fortiss.af3.platform.raspberry.model.v2v.V2VSplitInput
;
import
org.fortiss.af3.platform.raspberry.model.v2v.V2VSplitOutput
;
import
org.fortiss.af3.platform.raspberry.model.v2v.V2vFactory
;
...
...
@@ -740,10 +745,42 @@ public class RaspberryModelElementFactory {
return
input
;
}
/** Creates a {@link V2VHandshakeInput}. */
public
static
V2VHandshakeInput
createV2VHandshakeInput
()
{
V2VHandshakeInput
input
=
V2vFactory
.
eINSTANCE
.
createV2VHandshakeInput
();
input
.
setName
(
"V2VHandshakeInput"
);
createConnectorLayout
(
input
);
return
input
;
}
/** Creates a {@link V2VHandshakeOutput}. */
public
static
V2VHandshakeOutput
createV2VHandshakeOutput
()
{
V2VHandshakeOutput
input
=
V2vFactory
.
eINSTANCE
.
createV2VHandshakeOutput
();
input
.
setName
(
"V2VHandshakeOutput"
);
createConnectorLayout
(
input
);
return
input
;
}
/** Creates a {@link V2VFusePlatoonOutput}. */
public
static
V2VPrecedingUIDOuput
createV2VPrecedingUIDOuput
()
{
V2VPrecedingUIDOuput
input
=
V2vFactory
.
eINSTANCE
.
createV2VPrecedingUIDOuput
();
input
.
setName
(
"V2VPrecedingUIDOuput"
);
createConnectorLayout
(
input
);
return
input
;
}
/** Creates a {@link V2VFusePlatoonOutput}. */
public
static
V2VLocalUIDOutput
createV2VLocalUIDOutput
()
{
V2VLocalUIDOutput
input
=
V2vFactory
.
eINSTANCE
.
createV2VLocalUIDOutput
();
input
.
setName
(
"V2VLocalUIDOutput"
);
createConnectorLayout
(
input
);
return
input
;
}
/** Creates a {@link V2VFusePlatoonOutput}. */
public
static
V2V
FusePlatoon
Output
createV2
vFusePlatoon
Output
()
{
V2V
FusePlatoon
Output
input
=
V2vFactory
.
eINSTANCE
.
createV2V
FusePlatoon
Output
();
input
.
setName
(
"V2V
Fuse Platoon
Output"
);
public
static
V2V
LeaderUID
Output
createV2
VLeaderUID
Output
()
{
V2V
LeaderUID
Output
input
=
V2vFactory
.
eINSTANCE
.
createV2V
LeaderUID
Output
();
input
.
setName
(
"V2V
LeaderUID
Output"
);
createConnectorLayout
(
input
);
return
input
;
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment