Changes for page SCCharts Development
Last modified by Richard Kreissig on 2023/09/14 10:04
Summary
-
Page properties (1 modified, 0 added, 0 removed)
-
Objects (1 modified, 0 added, 0 removed)
Details
- Page properties
-
- Content
-
... ... @@ -152,8 +152,8 @@ 152 152 153 153 {{code language="java"}} 154 154 SCChartsFactory sccFactory = SCChartsFactory.eINSTANCE; 155 -State state = sccFactory 156 -Transition transition = sccFactory 155 +State state = sccFactory.createState(); 156 +Transition transition = sccFactory.createTransition(); 157 157 {{/code}} 158 158 159 159 Important: The SCCharts grammar is build on top of several other grammars. Therefore, not all language objects can be found in the SCCharts factory. For example, all expression elements are part of the KExpressions grammar and hence, have their own factory. If you need other factories, don't forget to add the corresponding plugin to your plugin dependency list. ... ... @@ -166,7 +166,7 @@ 166 166 For all simple attributes, there are getter and setter methods: 167 167 168 168 {{code language="java"}} 169 -state.setId(" Root");169 +state.setId("Init"); 170 170 boolValue.setValue(true); 171 171 {{/code}} 172 172 ... ... @@ -190,8 +190,14 @@ 190 190 191 191 EMF uses the [[Eclipse Resource concept>>url:http://help.eclipse.org/juno/topic/org.eclipse.platform.doc.isv/guide/resInt.htm?cp=2_0_10||rel="nofollow" shape="rect" class="external-link"]] to save models to files and load models from files. It can use different //Resource Factories// that determine how exactly models are serialized. We will use the [[XMIResourceFactoryImpl>>url:http://download.eclipse.org/modeling/emf/emf/javadoc/2.8.0/org/eclipse/emf/ecore/xmi/impl/XMIResourceFactoryImpl.html||rel="nofollow" shape="rect" class="external-link"]] to save our models to XML files: 192 192 193 -1. Add a dependency to the {{code language="none"}}org.eclipse.emf.ecore.xmi{{/code}} plug-in. 194 194 1. ((( 194 +Add a dependency to the {{code language="none"}}com.google.inject, org.eclipse.core.resources, {{/code}}and{{code language="none"}} de.cau.cs.kieler.sccharts.text{{/code}} plug-ins. 195 + 196 +{{info title="Additional Dependencies"}} 197 +Don't worry. You will be experienced enough to add mandatory dependencies quickly in the future. However, for now just add the dependencies to proceed with the tutorial. 198 +{{/info}} 199 +))) 200 +1. ((( 195 195 Use something like the following code to save the model from above: 196 196 197 197 {{code language="java"}} ... ... @@ -198,10 +198,10 @@ 198 198 // Create a resource set. 199 199 ResourceSet resourceSet = new ResourceSetImpl(); 200 200 201 -// Register the defaultresource factory -- only needed for stand-alone!202 - //thistells EMF touseXML to savehe model203 - resourceSet.getResourceFactoryRegistry().getExtensionToFactoryMap().put(204 - Resource.Factory.Registry.DEFAULT_EXTENSION, new SCTResourceFactoryImpl());207 +// Register the resource factory -- only needed for stand-alone! 208 +SctStandaloneSetup.doSetup(); 209 + 210 + 205 205 // Get the URI of the model file. 206 206 URI fileURI = URI.createFileURI(new File("myABO.sct").getAbsolutePath()); 207 207 ... ... @@ -220,23 +220,43 @@ 220 220 } 221 221 {{/code}} 222 222 ))) 229 +{{/layout-cell}} 230 +{{/layout-section}} 223 223 232 +{{layout-section ac:type="two_right_sidebar"}} 233 +{{layout-cell}} 224 224 ==== Model Creation Task ==== 225 225 226 - Withtheseinformationoutoftheway,onwegotosome modelcreation:236 +You are now equipped with the fundamentals you need to create models programmatically. Let's try it: 227 227 228 -1. Programmatically create a valid model of ABO in the {{code language="none"}}main(){{/code}} method. 229 -1. Run the {{code language="none"}}main(){{/code}} method by right-clicking its class and selecting //Run as// -> //Java Application//. Note that this runs your {{code language="none"}}main(){{/code}} method as a simple Java program, not a complete Eclipse application. EMF models can be used in any simple Java context, not just in Eclipse applications. 230 -1. Execute the main method. 231 -1. Inspect your SCT file. 238 +1. The code fragments listed above do not suffice to create a grammatically correct model. Try to generate a model that corresponds with the serialized model listed on the right side. 239 +11. Run the {{code language="none"}}main(){{/code}} method by right-clicking its class and selecting (% style="line-height: 1.42857;" %)//Run as//(%%) -> (% style="line-height: 1.42857;" %)//Java Application//(%%). Note that this runs your {{code language="none"}}main(){{/code}} method as a simple Java program, not a complete Eclipse application. EMF models can be used in any simple Java context, not just in Eclipse applications. 240 +11. Execute the main method. 241 +11. Inspect your SCT file. (Press F5 to refresh your file view.) 242 +1. Now, create a new Java class and proceed as before to generate a model of ABO in the {{code language="none"}}main(){{/code}} method. 232 232 1. Start your SCChart Editor Eclipse instance and load your SCT file. KLighD should now be able to visualize your ABO correctly. 244 + 245 + 233 233 {{/layout-cell}} 247 + 248 +{{layout-cell}} 249 +{{code language="java" title="Root.sct"}} 250 +scchart Root { 251 + initial state Init 252 + --> Init with true; 253 +} 254 +{{/code}} 255 +{{/layout-cell}} 234 234 {{/layout-section}} 235 235 236 -{{layout-section ac:type=" single"}}258 +{{layout-section ac:type="two_right_sidebar"}} 237 237 {{layout-cell}} 238 238 239 239 {{/layout-cell}} 262 + 263 +{{layout-cell}} 264 + 265 +{{/layout-cell}} 240 240 {{/layout-section}} 241 241 242 242 {{layout-section ac:type="single"}}
- Confluence.Code.ConfluencePageClass[0]
-
- Id
-
... ... @@ -1,1 +1,1 @@ 1 -168103 181 +16810366 - URL
-
... ... @@ -1,1 +1,1 @@ 1 -https://rtsys.informatik.uni-kiel.de/confluence//wiki/spaces/TUT/pages/168103 18/SCCharts Development1 +https://rtsys.informatik.uni-kiel.de/confluence//wiki/spaces/TUT/pages/16810366/SCCharts Development