Skip to content

Commit

Permalink
Added ODD and Behavioral Modelling Mode
Browse files Browse the repository at this point in the history
  • Loading branch information
AIgsid committed Sep 28, 2023
1 parent 71bd10a commit 6091054
Show file tree
Hide file tree
Showing 217 changed files with 5,089 additions and 459 deletions.
1 change: 1 addition & 0 deletions MainGraph.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<mxGraphModel><root><mxCell id="0"/><mxCell id="1" parent="0"/><mxCell id="rootnode" parent="1" style="Entityp" value="car" vertex="1"><mxGeometry as="geometry" height="30.0" width="80.0" x="360.0" y="90.0"/></mxCell><mxCell id="hideV" parent="1" style="Entity" value="End of Canvas" vertex="1"><mxGeometry as="geometry" height="30.0" width="80.0" y="50000.0"/></mxCell><mxCell id="hideH" parent="1" style="Entity" value="End of Canvas" vertex="1"><mxGeometry as="geometry" height="30.0" width="80.0" x="50000.0"/></mxCell><mxCell id="3" parent="1" style="Aspect" value="node1Dec" vertex="1"><mxGeometry as="geometry" height="30.0" width="30.0" x="392.0" y="228.0"/></mxCell><mxCell id="5" parent="1" style="Entityp" value="Model" vertex="1"><mxGeometry as="geometry" height="30.0" width="80.0" x="243.0" y="345.0"/></mxCell><mxCell id="6" parent="1" style="Entity" value="Country" vertex="1"><mxGeometry as="geometry" height="30.0" width="80.0" x="520.0" y="350.0"/></mxCell><mxCell edge="1" id="7" parent="1" source="3" style="" target="5" value=""><mxGeometry as="geometry" relative="1"><mxPoint as="sourcePoint" x="410.0" y="240.0"/><mxPoint as="targetPoint" x="280.0" y="360.0"/></mxGeometry></mxCell><mxCell edge="1" id="8" parent="1" source="3" style="" target="6" value=""><mxGeometry as="geometry" relative="1"><mxPoint as="sourcePoint" x="410.0" y="240.0"/><mxPoint as="targetPoint" x="580.0" y="360.0"/></mxGeometry></mxCell><mxCell id="9" parent="1" style="Aspect" value="node4Dec" vertex="1"><mxGeometry as="geometry" height="30.0" width="30.0" x="270.0" y="450.0"/></mxCell><mxCell id="10" parent="1" style="Aspect" value="node5Dec" vertex="1"><mxGeometry as="geometry" height="30.0" width="30.0" x="550.0" y="460.0"/></mxCell><mxCell edge="1" id="11" parent="1" source="5" style="" target="9" value=""><mxGeometry as="geometry" relative="1"><mxPoint as="sourcePoint" x="280.0" y="360.0"/><mxPoint as="targetPoint" x="280.0" y="480.0"/></mxGeometry></mxCell><mxCell edge="1" id="12" parent="1" source="6" style="" target="10" value=""><mxGeometry as="geometry" relative="1"><mxPoint as="sourcePoint" x="560.0" y="370.0"/><mxPoint as="targetPoint" x="580.0" y="510.0"/></mxGeometry></mxCell><mxCell id="15" parent="1" style="Entity" value="BMW" vertex="1"><mxGeometry as="geometry" height="30.0" width="80.0" x="130.0" y="570.0"/></mxCell><mxCell id="16" parent="1" style="Entity" value="Ford" vertex="1"><mxGeometry as="geometry" height="30.0" width="80.0" x="310.0" y="570.0"/></mxCell><mxCell id="17" parent="1" style="Entity" value="Germany" vertex="1"><mxGeometry as="geometry" height="30.0" width="80.0" x="470.0" y="580.0"/></mxCell><mxCell id="18" parent="1" style="Entity" value="USA" vertex="1"><mxGeometry as="geometry" height="30.0" width="80.0" x="637.0" y="579.0"/></mxCell><mxCell edge="1" id="19" parent="1" source="9" style="" target="15" value=""><mxGeometry as="geometry" relative="1"><mxPoint as="sourcePoint" x="290.0" y="470.0"/><mxPoint as="targetPoint" x="160.0" y="570.0"/></mxGeometry></mxCell><mxCell edge="1" id="20" parent="1" source="9" style="" target="16" value=""><mxGeometry as="geometry" relative="1"><mxPoint as="sourcePoint" x="290.0" y="470.0"/><mxPoint as="targetPoint" x="360.0" y="590.0"/></mxGeometry></mxCell><mxCell edge="1" id="21" parent="1" style="" value=""><mxGeometry as="geometry" relative="1"><mxPoint as="sourcePoint" x="562.75" y="490.0"/><mxPoint as="targetPoint" x="520.0" y="580.0"/></mxGeometry></mxCell><mxCell edge="1" id="22" parent="1" source="10" style="" target="18" value=""><mxGeometry as="geometry" relative="1"><mxPoint as="sourcePoint" x="570.0" y="480.0"/><mxPoint as="targetPoint" x="710.0" y="590.0"/></mxGeometry></mxCell><mxCell edge="1" id="23" parent="1" source="rootnode" style="" target="3" value=""><mxGeometry as="geometry" relative="1"><mxPoint as="sourcePoint" x="410.0" y="120.0"/><mxPoint as="targetPoint" x="420.0" y="240.0"/></mxGeometry></mxCell></root></mxGraphModel>
9 changes: 9 additions & 0 deletions MainProject.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<Project>
<MainModule>
<Main.xml>
</Main.xml>
</MainModule>
<AddedModule>
</AddedModule>
</Project>
53 changes: 49 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,15 @@
<artifactId>SESEditor</artifactId>
<version>1.0-SNAPSHOT</version>
<dependencies>
<dependency>

<!-- https://mvnrepository.com/artifact/org.json/json -->
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>20140107</version>
</dependency>

<dependency>
<groupId>com.googlecode.json-simple</groupId>
<artifactId>json-simple</artifactId>
<version>1.1.1</version>
Expand All @@ -18,6 +26,38 @@
<artifactId>guava</artifactId>
<version>30.1-jre</version>
</dependency>

<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.2.2</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.dataformat</groupId>
<artifactId>jackson-dataformat-yaml</artifactId>
<version>2.12.3</version>
</dependency>

<!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.dataformat/jackson-dataformat-xml -->
<dependency>
<groupId>com.fasterxml.jackson.dataformat</groupId>
<artifactId>jackson-dataformat-xml</artifactId>
<version>2.12.3</version>
</dependency>


<dependency>
<groupId>com.fasterxml.woodstox</groupId>
<artifactId>woodstox-core</artifactId>
<version>6.5.0</version>
</dependency>

<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>20210307</version>
</dependency>

<dependency>
<groupId>xerces</groupId>
<artifactId>xercesImpl</artifactId>
Expand Down Expand Up @@ -91,6 +131,11 @@
<version>5.6.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.11.0</version>
</dependency>
</dependencies>
<repositories>
<repository>
Expand All @@ -105,8 +150,8 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>8</source>
<target>8</target>
<source>11</source>
<target>11</target>
</configuration>
</plugin>
<plugin>
Expand All @@ -120,7 +165,7 @@
<configuration>
<archive>
<manifest>
<mainClass>odme.odmeeditor.Main</mainClass>
<mainClass>dlr.ses.seseditor.SESEditor</mainClass>
</manifest>
</archive>
<descriptorRefs>
Expand Down
Loading

0 comments on commit 6091054

Please sign in to comment.