Skip to content
Snippets Groups Projects
Commit 498eb704 authored by Johannes Eder's avatar Johannes Eder
Browse files

modelement factory for additional v2v elements

parent 3bd0605d
No related branches found
No related tags found
No related merge requests found
......@@ -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 V2VFusePlatoonOutput createV2vFusePlatoonOutput() {
V2VFusePlatoonOutput input = V2vFactory.eINSTANCE.createV2VFusePlatoonOutput();
input.setName("V2V Fuse Platoon Output");
public static V2VLeaderUIDOutput createV2VLeaderUIDOutput() {
V2VLeaderUIDOutput input = V2vFactory.eINSTANCE.createV2VLeaderUIDOutput();
input.setName("V2VLeaderUIDOutput");
createConnectorLayout(input);
return input;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment