Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 9a816ca6efa05f5bb734b006ff957d7471ae7468 (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 SubSystemHFSMTest
 * it instantiates SubSystemHFSMTest and starts and ends the lifecycle
 */

package org.eclipse.etrice.integration.tests;

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

class SubSystemHFSMTestRunner extends SubSystemRunnerBase {

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

Back to the top