Browse Source

Removed documentation of currently not supported generator features.

markus.muehlbrandt@gmail.com 13 years ago
parent
commit
d3739a0a42

+ 4 - 12
plugins/org.yakindu.sct.doc.user/help/user/04_Tasks/tasks.html

@@ -286,10 +286,8 @@
 			<i>false</i> It is an 
 			<strong>optional</strong> feature and consists of the following parameters:
 		</p>
+		<p><!-- # __EventBasedStatemachine__ (Boolean, optional): Enables/disables the generation of a cycle based statemachine implementation --></p>
 		<ol>
-			<li>
-				<i>EventBasedStatemachine</i> (Boolean, optional): Enables/disables the generation of a cycle based statemachine implementation
-			</li>
 			<li>
 				<i>InterfaceObserverSupport</i> (Boolean, optional): Enables/disables the generation of listener interfaces for the statemachine
 			</li>
@@ -300,21 +298,15 @@
 				<i>TimerService</i> (Boolean, optional): Enables/disables the generation of a timer service implementation using 
 				<i>java.util.Timer</i>
 			</li>
-			<li>
-				<i>GenericInterfaceSupport</i> (Boolean, optional): Enables/disables the generation of generic interfaces
-			</li>
-			<li>
-				<i>StatemachineFactorySupport</i> (Boolean, optional): Enables/disables  the generation of a factory class
-			</li>
 		</ol>
+		<p><!-- # __GenericInterfaceSupport__ (Boolean, optional): Enables/disables the generation of generic interfaces -->
+			<br/><!-- # __StatemachineFactorySupport__ (Boolean, optional): Enables/disables  the generation of a factory class -->
+		</p>
 		<p>Example configuration:</p>
 		<pre><code>feature GeneralFeatures {
-	EventBasedStatemachine = true
 	InterfaceObserverSupport = true
 	RuntimeService = true
 	TimerService = true
-	GenericInterfaceSupport = true
-	StatemachineFactorySupport = true
 }
 
 </code></pre>

+ 3 - 6
plugins/org.yakindu.sct.doc.user/help/user/04_Tasks/tasks.textile

@@ -197,23 +197,20 @@ h4. GeneralFeatures
 
 The *GeneralFeatures* feature allows to configure additional services to generate with the statemachine. Per default, all parameters are configured to __false__ It is an *optional* feature and consists of the following parameters:
 
-# __EventBasedStatemachine__ (Boolean, optional): Enables/disables the generation of a cycle based statemachine implementation
+==<!-- # __EventBasedStatemachine__ (Boolean, optional): Enables/disables the generation of a cycle based statemachine implementation -->==
 # __InterfaceObserverSupport__ (Boolean, optional): Enables/disables the generation of listener interfaces for the statemachine
 # __RuntimeService__ (Boolean, optional): Enables/disables the generation of a runtime service that triggers the runcycle of a cycle based statemachine
 # __TimerService__ (Boolean, optional): Enables/disables the generation of a timer service implementation using __java.util.Timer__
-# __GenericInterfaceSupport__ (Boolean, optional): Enables/disables the generation of generic interfaces
-# __StatemachineFactorySupport__ (Boolean, optional): Enables/disables  the generation of a factory class
+==<!-- # __GenericInterfaceSupport__ (Boolean, optional): Enables/disables the generation of generic interfaces -->==
+==<!-- # __StatemachineFactorySupport__ (Boolean, optional): Enables/disables  the generation of a factory class -->==
 
 Example configuration:
 
 bc.. 
 feature GeneralFeatures {
-	EventBasedStatemachine = true
 	InterfaceObserverSupport = true
 	RuntimeService = true
 	TimerService = true
-	GenericInterfaceSupport = true
-	StatemachineFactorySupport = true
 }
 
 p. ==<!-- End sgen_feature_generalfeatures -->==			

File diff suppressed because it is too large
+ 476 - 35
plugins/org.yakindu.sct.doc.user/help/user/05_Reference/reference.html