Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 69bc3c720ed91dda27d01ed1621aa6f5916b816c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/**
 * @author generated by eTrice
 *
 * this class contains the main function running component SubSystem_HelloWorld
 * it instantiates SubSystem_HelloWorld and starts and ends the lifecycle
 */

package HelloWorld;

import org.eclipse.etrice.runtime.java.modelbase.SubSystemRunnerBase;

class SubSystem_HelloWorldRunner extends SubSystemRunnerBase {

	/**
     * main function
     * creates the main component and starts and stops the lifecycle
     */
	public static void main(String[] args) {
		// instantiate the main component
		SubSystem_HelloWorld main_component = new SubSystem_HelloWorld("SubSystem_HelloWorld");
		
		run(main_component, args);
	}
};

Back to the top