Skip to content

Commit

Permalink
initial simexp application working
Browse files Browse the repository at this point in the history
  • Loading branch information
rsfzi committed Nov 25, 2024
1 parent 2021109 commit c712acf
Show file tree
Hide file tree
Showing 5 changed files with 42 additions and 7 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: Console app
Bundle-SymbolicName: org.palladiosimulator.simexp.app.console
Bundle-SymbolicName: org.palladiosimulator.simexp.app.console;singleton:=true
Bundle-Version: 0.1.0.qualifier
Require-Bundle: org.eclipse.equinox.app;bundle-version="1.6.200"
Automatic-Module-Name: org.palladiosimulator.simexp.app.console
Bundle-RequiredExecutionEnvironment: JavaSE-17
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
source.. = src/main/java/
output.. = target/
bin.includes = META-INF/,\
.
.,\
plugin.xml
17 changes: 17 additions & 0 deletions bundles/org.palladiosimulator.simexp.app.console/plugin.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
<extension
id="org.palladiosimulator.simexp.app.console.app"
point="org.eclipse.core.runtime.applications">
<application
cardinality="singleton-global"
thread="main"
visible="true">
<run
class="org.palladiosimulator.simexp.app.console.SimExpApplication">
</run>
</application>
</extension>

</plugin>
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
package org.palladiosimulator.simexp.app.console;

import org.eclipse.equinox.app.IApplication;
import org.eclipse.equinox.app.IApplicationContext;

public class SimExpApplication implements IApplication {

@Override
public Object start(IApplicationContext context) throws Exception {
// TODO Auto-generated method stub
return null;
}

@Override
public void stop() {
// TODO Auto-generated method stub

}

}
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<?pde version="3.5"?>

<product name="SimExp" uid="org.palladiosimulator.simexp.console" version="1.0.0.qualifier" useFeatures="true" includeLaunchers="true" autoIncludeRequirements="true">
<product name="SimExp" uid="org.palladiosimulator.simexp.console" application="org.palladiosimulator.simexp.app.console.app" version="1.0.0.qualifier" useFeatures="true" includeLaunchers="true" autoIncludeRequirements="true">

<configIni use="default">
</configIni>
Expand All @@ -11,7 +11,6 @@
</vmArgsMac>
</launcherArgs>


<launcher name="simexp">
<win useIco="false">
<bmp/>
Expand All @@ -21,7 +20,6 @@
<vm>
</vm>


<plugins>
</plugins>

Expand All @@ -32,8 +30,6 @@

<configurations>
<plugin id="org.eclipse.core.runtime" autoStart="true" startLevel="0" />
<property name="eclipse.ignoreApp" value="true" />
<property name="osgi.noShutdown" value="true" />
</configurations>

<preferencesInfo>
Expand Down

0 comments on commit c712acf

Please sign in to comment.