SlideShare une entreprise Scribd logo
1  sur  88
Textual Modeling Framework


                            Jan Koehnlein - Sven Efftinge
                                      itemis




Wednesday, March 25, 2009
Domain-Specific Language (DSL)




Wednesday, March 25, 2009
Domain-Specific Language (DSL)
               A DSL is a formal, processable language
                 targeting at a specific viewpoint or
                    aspect of a software system.




Wednesday, March 25, 2009
Domain-Specific Language (DSL)
               A DSL is a formal, processable language
                 targeting at a specific viewpoint or
                    aspect of a software system.
               It’s semantics, flexibility and notation is
                designed in order to support working
               with that viewpoint as good as possible.


Wednesday, March 25, 2009
Why DSLs?

                            • higher abstractions
                            • avoid redundancy
                            • separation of concerns
                            • use domain concepts
                             (Ubiquitous Language)




Wednesday, March 25, 2009
The challenge




Wednesday, March 25, 2009
Complicated
Wednesday, March 25, 2009
Complicated & Expensive ?
Wednesday, March 25, 2009
licensed by http://www.wordle.net/
Wednesday, March 25, 2009
How we address this with




Wednesday, March 25, 2009
Convenience
Wednesday, March 25, 2009
Wednesday, March 25, 2009
Wednesday, March 25, 2009
Wednesday, March 25, 2009
Wednesday, March 25, 2009
Wednesday, March 25, 2009
Wednesday, March 25, 2009
Wednesday, March 25, 2009
Wednesday, March 25, 2009
Wednesday, March 25, 2009
grammar org.xtext.example.MyDsl
                            	   with org.eclipse.xtext.common.Terminals

                            generate myDsl quot;http://www.xtext.org/example/MyDslquot;

                            Model:
                            	   (types+=Type)*;
                            	
                            Type:
                            	   Datatype | Entity;
                            	
                            Datatype:
                            	   'datatype' name=ID;
                            	
                            Entity:
                            	   'entity' name=ID '{'
                            	   	   (features+=Feature)*
                            	   '}';
                            	
                            Feature:
                            	   type=[Type] name=ID;



Wednesday, March 25, 2009
Grammar Definition
                            grammar org.xtext.example.MyDsl
                            	   with org.eclipse.xtext.common.Terminals

                            generate myDsl quot;http://www.xtext.org/example/MyDslquot;

                            Model:
                            	   (types+=Type)*;
                            	
                            Type:
                            	   Datatype | Entity;
                            	
                            Datatype:
                            	   'datatype' name=ID;
                            	
                            Entity:
                            	   'entity' name=ID '{'
                            	   	   (features+=Feature)*
                            	   '}';
                            	
                            Feature:
                            	   type=[Type] name=ID;



Wednesday, March 25, 2009
Grammar Definition                Terminal Rule Import
                            grammar org.xtext.example.MyDsl
                            	   with org.eclipse.xtext.common.Terminals

                            generate myDsl quot;http://www.xtext.org/example/MyDslquot;

                            Model:
                            	   (types+=Type)*;
                            	
                            Type:
                            	   Datatype | Entity;
                            	
                            Datatype:
                            	   'datatype' name=ID;
                            	
                            Entity:
                            	   'entity' name=ID '{'
                            	   	   (features+=Feature)*
                            	   '}';
                            	
                            Feature:
                            	   type=[Type] name=ID;



Wednesday, March 25, 2009
Grammar Definition                Terminal Rule Import
                            grammar org.xtext.example.MyDsl
  Derived                   	   with org.eclipse.xtext.common.Terminals

 Metamodel generate myDsl quot;http://www.xtext.org/example/MyDslquot;
                            Model:
                            	   (types+=Type)*;
                            	
                            Type:
                            	   Datatype | Entity;
                            	
                            Datatype:
                            	   'datatype' name=ID;
                            	
                            Entity:
                            	   'entity' name=ID '{'
                            	   	   (features+=Feature)*
                            	   '}';
                            	
                            Feature:
                            	   type=[Type] name=ID;



Wednesday, March 25, 2009
Grammar Definition                Terminal Rule Import
                            grammar org.xtext.example.MyDsl
  Derived                   	   with org.eclipse.xtext.common.Terminals

 Metamodel generate myDsl quot;http://www.xtext.org/example/MyDslquot;
                            Model:
       Parser               	   (types+=Type)*;
                            	
       Rules                Type:
                            	   Datatype | Entity;
                            	
                            Datatype:
                            	   'datatype' name=ID;
                            	
                            Entity:
                            	   'entity' name=ID '{'
                            	   	   (features+=Feature)*
                            	   '}';
                            	
                            Feature:
                            	   type=[Type] name=ID;



Wednesday, March 25, 2009
Grammar Definition                Terminal Rule Import
                            grammar org.xtext.example.MyDsl
  Derived                   	   with org.eclipse.xtext.common.Terminals

 Metamodel generate myDsl quot;http://www.xtext.org/example/MyDslquot;
                                                           Containment
                                                             Reference
           Model:
  Parser   	   (types+=Type)*;
                            	
        Rules               Type:
                            	   Datatype | Entity;
                            	
                            Datatype:
                            	   'datatype' name=ID;
                            	
                            Entity:
                            	   'entity' name=ID '{'
                            	   	   (features+=Feature)*
                            	   '}';
                            	
                            Feature:
                            	   type=[Type] name=ID;



Wednesday, March 25, 2009
Grammar Definition                Terminal Rule Import
                            grammar org.xtext.example.MyDsl
  Derived                   	   with org.eclipse.xtext.common.Terminals

 Metamodel generate myDsl quot;http://www.xtext.org/example/MyDslquot;
                                                           Containment
                                                             Reference
           Model:
  Parser 	 	   (types+=Type)*;

                                                             Cardinality
   Rules Type:
                            	   Datatype | Entity;
                            	
                            Datatype:
                            	   'datatype' name=ID;
                            	
                            Entity:
                            	   'entity' name=ID '{'
                            	   	   (features+=Feature)*
                            	   '}';
                            	
                            Feature:
                            	   type=[Type] name=ID;



Wednesday, March 25, 2009
Grammar Definition                Terminal Rule Import
                            grammar org.xtext.example.MyDsl
  Derived                   	   with org.eclipse.xtext.common.Terminals

 Metamodel generate myDsl quot;http://www.xtext.org/example/MyDslquot;
                                                           Containment
                                                             Reference
           Model:
  Parser 	 	   (types+=Type)*;

                                                             Cardinality
   Rules Type:
                            	   Datatype | Entity;
                                                                          Alternatives
                            	
                            Datatype:
                            	   'datatype' name=ID;
                            	
                            Entity:
                            	   'entity' name=ID '{'
                            	   	   (features+=Feature)*
                            	   '}';
                            	
                            Feature:
                            	   type=[Type] name=ID;



Wednesday, March 25, 2009
Grammar Definition                Terminal Rule Import
                            grammar org.xtext.example.MyDsl
  Derived                   	   with org.eclipse.xtext.common.Terminals

 Metamodel generate myDsl quot;http://www.xtext.org/example/MyDslquot;
                                                           Containment
                                                             Reference
           Model:
  Parser 	 	   (types+=Type)*;

                                                             Cardinality
   Rules Type:
                            	   Datatype | Entity;
                                                                          Alternatives
                            	
                            Datatype:
                            	   'datatype' name=ID;
                                                                            Call to
                            	
                            Entity:
                                                                           Terminal
                            	   'entity' name=ID '{'
                            	   	   (features+=Feature)*
                                                                             Rule
                            	   '}';
                            	
                            Feature:
                            	   type=[Type] name=ID;



Wednesday, March 25, 2009
Grammar Definition                Terminal Rule Import
                            grammar org.xtext.example.MyDsl
  Derived                   	   with org.eclipse.xtext.common.Terminals

 Metamodel generate myDsl quot;http://www.xtext.org/example/MyDslquot;
                                                           Containment
                                                             Reference
           Model:
  Parser 	 	   (types+=Type)*;

                                                             Cardinality
   Rules Type:
                            	   Datatype | Entity;
                                                                          Alternatives
                            	
                            Datatype:
                            	   'datatype' name=ID;
                                                                            Call to
                            	
                            Entity:
  Keywords                                                                 Terminal
                            	   'entity' name=ID '{'
                            	   	   (features+=Feature)*
                                                                             Rule
                            	   '}';
                            	
                            Feature:
                            	   type=[Type] name=ID;



Wednesday, March 25, 2009
Grammar Definition                Terminal Rule Import
                            grammar org.xtext.example.MyDsl
  Derived                   	   with org.eclipse.xtext.common.Terminals

 Metamodel generate myDsl quot;http://www.xtext.org/example/MyDslquot;
                                                           Containment
                                                             Reference
           Model:
  Parser 	 	   (types+=Type)*;

                                                             Cardinality
   Rules Type:
                            	   Datatype | Entity;
                                                                          Alternatives
                            	
                            Datatype:
                            	   'datatype' name=ID;
                                                                            Call to
                            	
                            Entity:
  Keywords                                                                 Terminal
                            	   'entity' name=ID '{'
                            	   	   (features+=Feature)*
                                                             Cross           Rule
                            	   '}';
                            	
                                                            Reference
                            Feature:
                            	   type=[Type] name=ID;



Wednesday, March 25, 2009
Metamodel Derivation
                                                  MyDsl
    grammar org.xtext.example.MyDsl
    	   with org.eclipse.xtext.common.Terminals
                                                                    Model

    generate myDsl
      quot;http://www.xtext.org/example/MyDslquot;

    Model:                                                               *
                                                                     Type
    	   (types+=Type)*;
    	                                                            name: String
    Type:
    	   Datatype | Entity;
    	
    Datatype:                                        Datatype                        Entity
    	   'datatype' name=ID;
    	
    Entity:
    	   'entity' name=ID '{'                              type
    	   	    (features+=Feature)*                                                       *
    	   '}';                                                                        Feature
                                                                             *
    	
                                                                                 name: String
    Feature:
    	   type=[Datatype] name=ID;



Wednesday, March 25, 2009
Metamodel Derivation
                                                  MyDsl
    grammar org.xtext.example.MyDsl
    	   with org.eclipse.xtext.common.Terminals
                                                                    Model

    generate myDsl
      quot;http://www.xtext.org/example/MyDslquot;

    Model:                                                               *
                                                                     Type
    	   (types+=Type)*;
    	                                                            name: String
    Type:
    	   Datatype | Entity;
    	
    Datatype:                                        Datatype                        Entity
    	   'datatype' name=ID;
    	
    Entity:
    	   'entity' name=ID '{'                              type
    	   	    (features+=Feature)*                                                       *
    	   '}';                                                                        Feature
                                                                             *
    	
                                                                                 name: String
    Feature:
    	   type=[Datatype] name=ID;



Wednesday, March 25, 2009
Metamodel Derivation
                                                  MyDsl
    grammar org.xtext.example.MyDsl
    	   with org.eclipse.xtext.common.Terminals
                                                                    Model

    generate myDsl
      quot;http://www.xtext.org/example/MyDslquot;

    Model:                                                               *
                                                                     Type
    	   (types+=Type)*;
    	                                                            name: String
    Type:
    	   Datatype | Entity;
    	
    Datatype:                                        Datatype                        Entity
    	   'datatype' name=ID;
    	
    Entity:
    	   'entity' name=ID '{'                              type
    	   	    (features+=Feature)*                                                       *
    	   '}';                                                                        Feature
                                                                             *
    	
                                                                                 name: String
    Feature:
    	   type=[Datatype] name=ID;



Wednesday, March 25, 2009
Metamodel Derivation
                                                  MyDsl
    grammar org.xtext.example.MyDsl
    	   with org.eclipse.xtext.common.Terminals
                                                                    Model

    generate myDsl
      quot;http://www.xtext.org/example/MyDslquot;

    Model:                                                               *
                                                                     Type
    	   (types+=Type)*;
    	                                                            name: String
    Type:
    	   Datatype | Entity;
    	
    Datatype:                                        Datatype                        Entity
    	   'datatype' name=ID;
    	
    Entity:
    	   'entity' name=ID '{'                              type
    	   	    (features+=Feature)*                                                       *
    	   '}';                                                                        Feature
                                                                             *
    	
                                                                                 name: String
    Feature:
    	   type=[Datatype] name=ID;



Wednesday, March 25, 2009
Metamodel Derivation
                                                  MyDsl
    grammar org.xtext.example.MyDsl
    	   with org.eclipse.xtext.common.Terminals
                                                                    Model

    generate myDsl
      quot;http://www.xtext.org/example/MyDslquot;

    Model:                                                               *
                                                                     Type
    	   (types+=Type)*;
    	                                                            name: String
    Type:
    	   Datatype | Entity;
    	
    Datatype:                                        Datatype                        Entity
    	   'datatype' name=ID;
    	
    Entity:
    	   'entity' name=ID '{'                              type
    	   	    (features+=Feature)*                                                       *
    	   '}';                                                                        Feature
                                                                             *
    	
                                                                                 name: String
    Feature:
    	   type=[Datatype] name=ID;



Wednesday, March 25, 2009
Metamodel Derivation
                                                  MyDsl
    grammar org.xtext.example.MyDsl
    	   with org.eclipse.xtext.common.Terminals
                                                                    Model

    generate myDsl
      quot;http://www.xtext.org/example/MyDslquot;

    Model:                                                               *
                                                                     Type
    	   (types+=Type)*;
    	                                                            name: String
    Type:
    	   Datatype | Entity;
    	
    Datatype:                                        Datatype                        Entity
    	   'datatype' name=ID;
    	
    Entity:
    	   'entity' name=ID '{'                              type
    	   	    (features+=Feature)*                                                       *
    	   '}';                                                                        Feature
                                                                             *
    	
                                                                                 name: String
    Feature:
    	   type=[Datatype] name=ID;



Wednesday, March 25, 2009
Metamodel Derivation
                                                  MyDsl
    grammar org.xtext.example.MyDsl
    	   with org.eclipse.xtext.common.Terminals
                                                                    Model

    generate myDsl
      quot;http://www.xtext.org/example/MyDslquot;

    Model:                                                               *
                                                                     Type
    	   (types+=Type)*;
    	                                                            name: String
    Type:
    	   Datatype | Entity;
    	
    Datatype:                                        Datatype                        Entity
    	   'datatype' name=ID;
    	
    Entity:
    	   'entity' name=ID '{'                              type
    	   	    (features+=Feature)*                                                       *
    	   '}';                                                                        Feature
                                                                             *
    	
                                                                                 name: String
    Feature:
    	   type=[Datatype] name=ID;



Wednesday, March 25, 2009
Metamodel Derivation
                                                  MyDsl
    grammar org.xtext.example.MyDsl
    	   with org.eclipse.xtext.common.Terminals
                                                                    Model

    generate myDsl
      quot;http://www.xtext.org/example/MyDslquot;

    Model:                                                               *
                                                                     Type
    	   (types+=Type)*;
    	                                                            name: String
    Type:
    	   Datatype | Entity;
    	
    Datatype:                                        Datatype                        Entity
    	   'datatype' name=ID;
    	
    Entity:
    	   'entity' name=ID '{'                              type
    	   	    (features+=Feature)*                                                       *
    	   '}';                                                                        Feature
                                                                             *
    	
                                                                                 name: String
    Feature:
    	   type=[Datatype] name=ID;



Wednesday, March 25, 2009
Metamodel Derivation
                                                  MyDsl
    grammar org.xtext.example.MyDsl
    	   with org.eclipse.xtext.common.Terminals
                                                                    Model

    generate myDsl
      quot;http://www.xtext.org/example/MyDslquot;

    Model:                                                               *
                                                                     Type
    	   (types+=Type)*;
    	                                                            name: String
    Type:
    	   Datatype | Entity;
    	
    Datatype:                                        Datatype                        Entity
    	   'datatype' name=ID;
    	
    Entity:
    	   'entity' name=ID '{'                              type
    	   	    (features+=Feature)*                                                       *
    	   '}';                                                                        Feature
                                                                             *
    	
                                                                                 name: String
    Feature:
    	   type=[Datatype] name=ID;



Wednesday, March 25, 2009
Metamodel Derivation
                                                  MyDsl
    grammar org.xtext.example.MyDsl
    	   with org.eclipse.xtext.common.Terminals
                                                                    Model

    generate myDsl
      quot;http://www.xtext.org/example/MyDslquot;

    Model:                                                               *
                                                                     Type
    	   (types+=Type)*;
    	                                                            name: String
    Type:
    	   Datatype | Entity;
    	
    Datatype:                                        Datatype                        Entity
    	   'datatype' name=ID;
    	
    Entity:
    	   'entity' name=ID '{'                              type
    	   	    (features+=Feature)*                                                       *
    	   '}';                                                                        Feature
                                                                             *
    	
                                                                                 name: String
    Feature:
    	   type=[Datatype] name=ID;



Wednesday, March 25, 2009
Metamodel Derivation
                                                  MyDsl
    grammar org.xtext.example.MyDsl
    	   with org.eclipse.xtext.common.Terminals
                                                                    Model

    generate myDsl
      quot;http://www.xtext.org/example/MyDslquot;

    Model:                                                               *
                                                                     Type
    	   (types+=Type)*;
    	                                                            name: String
    Type:
    	   Datatype | Entity;
    	
    Datatype:                                        Datatype                        Entity
    	   'datatype' name=ID;
    	
    Entity:
    	   'entity' name=ID '{'                              type
    	   	    (features+=Feature)*                                                       *
    	   '}';                                                                        Feature
                                                                             *
    	
                                                                                 name: String
    Feature:
    	   type=[Datatype] name=ID;



Wednesday, March 25, 2009
Metamodel Derivation
                                                  MyDsl
    grammar org.xtext.example.MyDsl
    	   with org.eclipse.xtext.common.Terminals
                                                                    Model

    generate myDsl
      quot;http://www.xtext.org/example/MyDslquot;

    Model:                                                               *
                                                                     Type
    	   (types+=Type)*;
    	                                                            name: String
    Type:
    	   Datatype | Entity;
    	
    Datatype:                                        Datatype                        Entity
    	   'datatype' name=ID;
    	
    Entity:
    	   'entity' name=ID '{'                              type
    	   	    (features+=Feature)*                                                       *
    	   '}';                                                                        Feature
                                                                             *
    	
                                                                                 name: String
    Feature:
    	   type=[Datatype] name=ID;



Wednesday, March 25, 2009
licensed by http://www.wordle.net/
Wednesday, March 25, 2009
Based on
            the grammar and Ecore models,
            Xtext provides you with sensible
                default implementations.


                                        licensed by http://www.wordle.net/
Wednesday, March 25, 2009
Validation


Wednesday, March 25, 2009
Wednesday, March 25, 2009
Wednesday, March 25, 2009
Wednesday, March 25, 2009
Wednesday, March 25, 2009
Customizing the LabelProvider

              public class MySpecialLabelProvider
                     extends DefaultLabelProvider {

                    public String label(Feature f) {
                       return f.getName()+quot;:quot;+f.getType().getName();
                    }
              }


            ‣Naming Convention
            ‣Polymorphic Dispatch
            ‣Fault tolerance


Wednesday, March 25, 2009
Flexibility
Wednesday, March 25, 2009
licensed by http://www.wordle.net/
Wednesday, March 25, 2009
Dependency management




                            licensed by http://www.wordle.net/
Wednesday, March 25, 2009
Dependency management




                            licensed by http://www.wordle.net/
Wednesday, March 25, 2009
Dependency management




                            licensed by http://www.wordle.net/
Wednesday, March 25, 2009
Dependency management




                            licensed by http://www.wordle.net/
Wednesday, March 25, 2009
Dependency management




                            licensed by http://www.wordle.net/
Wednesday, March 25, 2009
MyCustomLabelProvider




                                        licensed by http://www.wordle.net/
Wednesday, March 25, 2009
Dependency Injection
                   with Google fGuice




Wednesday, March 25, 2009
Dependency Injection
                   with Google fGuice




Wednesday, March 25, 2009
Dependency Injection
                   with Google fGuice




          ‣No dependency to concrete implementation



Wednesday, March 25, 2009
Dependency Injection
                   with Google fGuice




          ‣No dependency to concrete implementation
          ‣No explicit construction


Wednesday, March 25, 2009
Dependency Injection
                   with Google fGuice




          ‣No dependency to concrete implementation
          ‣No explicit construction
          ‣Easy testing

Wednesday, March 25, 2009
Dependency Injection
                   with Google fGuice




          ‣No dependency to concrete implementation
          ‣No explicit construction
          ‣Easy testing
          ‣Easy composition
Wednesday, March 25, 2009
Configuration of
                      Components in Xtext
                            AbstractDeclarativeModule




            DefaultRuntimeModule                 DefaultUIModule
                                                                    From Xtext

                                                                    Your Project
         GeneratedRuntimeModule                 GeneratedUIModule




                 RuntimeModule                          UIModule




Wednesday, March 25, 2009
Configuration of
                    Components in Xtext
        /**
          * used to register components to be used within the IDE.
          */
        public class DomainmodelUiModule
        	 	 extends GeneratedDomainmodelUiModule {
        	
        	 @Override
        	 public Class<? extends ILabelProvider> bindILabelProvider() {
        	 	 return MySpecialLabelProvider.class;
        	}
        }




Wednesday, March 25, 2009
and Equinox

         Injector is created during Bundle.start(...)
    	 @Override
    	 public void start(BundleContext context) throws Exception {
    	 	 super.start(context);
    	 	 INSTANCE = this;
    	 	 injector = Guice.createInjector(
              new DomainmodelRuntimeModule(),
              new DomainmodelUiModule());
    	}
    	




Wednesday, March 25, 2009
and Equinox

         ExecutableExtensions are created via
         IExecutableExtensionFactory
     	     <extension
     	     	 point=quot;org.eclipse.emf.ecore.extension_parserquot;>
     	     	 <parser class=quot;my.pack.DomainmodelExecutableExtensionFactory:
                              org.eclipse.xtext.resource.XtextResourceFactoryquot;
     	     	 	 type=quot;dmodelquot;>
     	     	 </parser>
     	     </extension>




Wednesday, March 25, 2009
Composable
                            Code Generator
                       ‣ generator is composed of “fragments”




Wednesday, March 25, 2009
Composable
                            Code Generator
                       ‣ generator is composed of “fragments”
                       ‣ fragments can contribute to:




Wednesday, March 25, 2009
Composable
                            Code Generator
                       ‣ generator is composed of “fragments”
                       ‣ fragments can contribute to:
                        ‣ Manifest.MF



Wednesday, March 25, 2009
Composable
                            Code Generator
                       ‣ generator is composed of “fragments”
                       ‣ fragments can contribute to:
                        ‣ Manifest.MF
                        ‣ plugin.xml


Wednesday, March 25, 2009
Composable
                            Code Generator
                       ‣ generator is composed of “fragments”
                       ‣ fragments can contribute to:
                        ‣ Manifest.MF
                        ‣ plugin.xml
                        ‣ Guice modules

Wednesday, March 25, 2009
Composable
                            Code Generator
                       ‣ generator is composed of “fragments”
                       ‣ fragments can contribute to:
                        ‣ Manifest.MF
                        ‣ plugin.xml
                        ‣ Guice modules
                       ‣ Add your own fragments
Wednesday, March 25, 2009
Future Plans
Wednesday, March 25, 2009
Galileo




Wednesday, March 25, 2009
Galileo
       •      Index




Wednesday, March 25, 2009
Galileo
       •      Index
       • Enum Rules




Wednesday, March 25, 2009
Galileo
       •      Index
       • Enum Rules
       • Bug fixing / Performance Tuning




Wednesday, March 25, 2009
Galileo
       •      Index
       • Enum Rules
       • Bug fixing / Performance Tuning
       • Documentation



Wednesday, March 25, 2009
Galileo
       •      Index
       • Enum Rules
       • Bug fixing / Performance Tuning
       • Documentation
       • Sugar (Wizards, Tutorials, etc.)

Wednesday, March 25, 2009
Post Galileo




Wednesday, March 25, 2009
Post Galileo

         ‣      More UI features




Wednesday, March 25, 2009
Post Galileo

         ‣      More UI features

         ‣Basic Language Libraries




Wednesday, March 25, 2009
Post Galileo

         ‣      More UI features

         ‣Basic Language Libraries

         ‣“Eat your own dog food”
                continued


Wednesday, March 25, 2009
Thank you very much for listening

      Visit the project’s web site :
             www.xtext.org

     Copyright 2009 by itemis



Wednesday, March 25, 2009
Convenient & Flexible
Wednesday, March 25, 2009

Contenu connexe

Tendances

Advanced php
Advanced phpAdvanced php
Advanced php
hamfu
 
Architecture logicielle #3 : object oriented design
Architecture logicielle #3 : object oriented designArchitecture logicielle #3 : object oriented design
Architecture logicielle #3 : object oriented design
Jean Michel
 
Designing a JavaFX Mobile application
Designing a JavaFX Mobile applicationDesigning a JavaFX Mobile application
Designing a JavaFX Mobile application
Fabrizio Giudici
 
A Gentle Introduction To Object Oriented Php
A Gentle Introduction To Object Oriented PhpA Gentle Introduction To Object Oriented Php
A Gentle Introduction To Object Oriented Php
Michael Girouard
 

Tendances (20)

Extending the Xbase Typesystem
Extending the Xbase TypesystemExtending the Xbase Typesystem
Extending the Xbase Typesystem
 
Everything is Permitted: Extending Built-ins
Everything is Permitted: Extending Built-insEverything is Permitted: Extending Built-ins
Everything is Permitted: Extending Built-ins
 
core java
core javacore java
core java
 
C# Advanced L03-XML+LINQ to XML
C# Advanced L03-XML+LINQ to XMLC# Advanced L03-XML+LINQ to XML
C# Advanced L03-XML+LINQ to XML
 
Prototype
PrototypePrototype
Prototype
 
EMF Tips n Tricks
EMF Tips n TricksEMF Tips n Tricks
EMF Tips n Tricks
 
Synapseindia object oriented programming in php
Synapseindia object oriented programming in phpSynapseindia object oriented programming in php
Synapseindia object oriented programming in php
 
Basics of Object Oriented Programming in Python
Basics of Object Oriented Programming in PythonBasics of Object Oriented Programming in Python
Basics of Object Oriented Programming in Python
 
Java and XML
Java and XMLJava and XML
Java and XML
 
Advanced php
Advanced phpAdvanced php
Advanced php
 
Oop concepts in python
Oop concepts in pythonOop concepts in python
Oop concepts in python
 
Architecture logicielle #3 : object oriented design
Architecture logicielle #3 : object oriented designArchitecture logicielle #3 : object oriented design
Architecture logicielle #3 : object oriented design
 
Object oriented programming with python
Object oriented programming with pythonObject oriented programming with python
Object oriented programming with python
 
Ios development
Ios developmentIos development
Ios development
 
Designing a JavaFX Mobile application
Designing a JavaFX Mobile applicationDesigning a JavaFX Mobile application
Designing a JavaFX Mobile application
 
PYTHON-Chapter 3-Classes and Object-oriented Programming: MAULIK BORSANIYA
PYTHON-Chapter 3-Classes and Object-oriented Programming: MAULIK BORSANIYAPYTHON-Chapter 3-Classes and Object-oriented Programming: MAULIK BORSANIYA
PYTHON-Chapter 3-Classes and Object-oriented Programming: MAULIK BORSANIYA
 
Uncommon Design Patterns
Uncommon Design PatternsUncommon Design Patterns
Uncommon Design Patterns
 
A Gentle Introduction To Object Oriented Php
A Gentle Introduction To Object Oriented PhpA Gentle Introduction To Object Oriented Php
A Gentle Introduction To Object Oriented Php
 
Xtext's new Formatter API
Xtext's new Formatter APIXtext's new Formatter API
Xtext's new Formatter API
 
Object Oriented Programming in PHP
Object Oriented Programming in PHPObject Oriented Programming in PHP
Object Oriented Programming in PHP
 

Similaire à Xtext Eclipse Con

Attacks against Microsoft network web clients
Attacks against Microsoft network web clients Attacks against Microsoft network web clients
Attacks against Microsoft network web clients
Positive Hack Days
 
Introduction To Csharp
Introduction To CsharpIntroduction To Csharp
Introduction To Csharp
g_hemanth17
 
Introduction to-csharp-1229579367461426-1
Introduction to-csharp-1229579367461426-1Introduction to-csharp-1229579367461426-1
Introduction to-csharp-1229579367461426-1
Sachin Singh
 
Introduction to CSharp
Introduction to CSharpIntroduction to CSharp
Introduction to CSharp
Mody Farouk
 
Introduction to csharp
Introduction to csharpIntroduction to csharp
Introduction to csharp
Raga Vahini
 
Introduction to csharp
Introduction to csharpIntroduction to csharp
Introduction to csharp
Satish Verma
 
Introduction to csharp
Introduction to csharpIntroduction to csharp
Introduction to csharp
singhadarsh
 

Similaire à Xtext Eclipse Con (20)

Jazoon 2010 - Building DSLs with Eclipse
Jazoon 2010 - Building DSLs with EclipseJazoon 2010 - Building DSLs with Eclipse
Jazoon 2010 - Building DSLs with Eclipse
 
Building DSLs With Eclipse
Building DSLs With EclipseBuilding DSLs With Eclipse
Building DSLs With Eclipse
 
Overcoming The Impedance Mismatch Between Source Code And Architecture
Overcoming The Impedance Mismatch Between Source Code And ArchitectureOvercoming The Impedance Mismatch Between Source Code And Architecture
Overcoming The Impedance Mismatch Between Source Code And Architecture
 
Xbase - Implementing Domain-Specific Languages for Java
Xbase - Implementing Domain-Specific Languages for JavaXbase - Implementing Domain-Specific Languages for Java
Xbase - Implementing Domain-Specific Languages for Java
 
201005 accelerometer and core Location
201005 accelerometer and core Location201005 accelerometer and core Location
201005 accelerometer and core Location
 
Extensible and Dynamic Topic Types For DDS (out of date)
Extensible and Dynamic Topic Types For DDS (out of date)Extensible and Dynamic Topic Types For DDS (out of date)
Extensible and Dynamic Topic Types For DDS (out of date)
 
XXE
XXEXXE
XXE
 
Xxe
XxeXxe
Xxe
 
Attacks against Microsoft network web clients
Attacks against Microsoft network web clients Attacks against Microsoft network web clients
Attacks against Microsoft network web clients
 
Your Entity, Your Code
Your Entity, Your CodeYour Entity, Your Code
Your Entity, Your Code
 
Your Entity, Your Code
Your Entity, Your CodeYour Entity, Your Code
Your Entity, Your Code
 
Ian 2014.10.24 weekly report
Ian 2014.10.24 weekly reportIan 2014.10.24 weekly report
Ian 2014.10.24 weekly report
 
Reversing JavaScript
Reversing JavaScriptReversing JavaScript
Reversing JavaScript
 
Introduction To Csharp
Introduction To CsharpIntroduction To Csharp
Introduction To Csharp
 
Introduction to-csharp-1229579367461426-1
Introduction to-csharp-1229579367461426-1Introduction to-csharp-1229579367461426-1
Introduction to-csharp-1229579367461426-1
 
Introduction to CSharp
Introduction to CSharpIntroduction to CSharp
Introduction to CSharp
 
Introduction to csharp
Introduction to csharpIntroduction to csharp
Introduction to csharp
 
Introduction to csharp
Introduction to csharpIntroduction to csharp
Introduction to csharp
 
Introduction to csharp
Introduction to csharpIntroduction to csharp
Introduction to csharp
 
.Net Project Portfolio for Roger Loving
.Net Project Portfolio for Roger Loving.Net Project Portfolio for Roger Loving
.Net Project Portfolio for Roger Loving
 

Plus de Sven Efftinge

Xtext at MDD Day 2010
Xtext at MDD Day 2010Xtext at MDD Day 2010
Xtext at MDD Day 2010
Sven Efftinge
 
Dependency Injection for Eclipse developers
Dependency Injection for Eclipse developersDependency Injection for Eclipse developers
Dependency Injection for Eclipse developers
Sven Efftinge
 
Challenges In Dsl Design
Challenges In Dsl DesignChallenges In Dsl Design
Challenges In Dsl Design
Sven Efftinge
 

Plus de Sven Efftinge (20)

Parsing Expression With Xtext
Parsing Expression With XtextParsing Expression With Xtext
Parsing Expression With Xtext
 
Language Engineering With Xtext
Language Engineering With XtextLanguage Engineering With Xtext
Language Engineering With Xtext
 
Future of Xtext
Future of XtextFuture of Xtext
Future of Xtext
 
Auto-GWT : Better GWT Programming with Xtend
Auto-GWT : Better GWT Programming with XtendAuto-GWT : Better GWT Programming with Xtend
Auto-GWT : Better GWT Programming with Xtend
 
Functional programming with Xtend
Functional programming with XtendFunctional programming with Xtend
Functional programming with Xtend
 
Codegeneration With Xtend
Codegeneration With XtendCodegeneration With Xtend
Codegeneration With Xtend
 
Gwt and Xtend
Gwt and XtendGwt and Xtend
Gwt and Xtend
 
Domain Specific Languages (EclipseCon 2012)
Domain Specific Languages (EclipseCon 2012)Domain Specific Languages (EclipseCon 2012)
Domain Specific Languages (EclipseCon 2012)
 
Xtend @ EclipseCon 2012
Xtend @ EclipseCon 2012Xtend @ EclipseCon 2012
Xtend @ EclipseCon 2012
 
Eclipse Xtend
Eclipse XtendEclipse Xtend
Eclipse Xtend
 
This Is Not Your Father's Java
This Is Not Your Father's JavaThis Is Not Your Father's Java
This Is Not Your Father's Java
 
Getting the most out of Java [Nordic Coding-2010]
Getting the most out of Java [Nordic Coding-2010]Getting the most out of Java [Nordic Coding-2010]
Getting the most out of Java [Nordic Coding-2010]
 
Xtext at MDD Day 2010
Xtext at MDD Day 2010Xtext at MDD Day 2010
Xtext at MDD Day 2010
 
Dependency Injection for Eclipse developers
Dependency Injection for Eclipse developersDependency Injection for Eclipse developers
Dependency Injection for Eclipse developers
 
Xtext Webinar
Xtext WebinarXtext Webinar
Xtext Webinar
 
Challenges In Dsl Design
Challenges In Dsl DesignChallenges In Dsl Design
Challenges In Dsl Design
 
Code Generation in Agile Projects
Code Generation in Agile ProjectsCode Generation in Agile Projects
Code Generation in Agile Projects
 
Generic Editor
Generic EditorGeneric Editor
Generic Editor
 
Eclipse Banking Day
Eclipse Banking DayEclipse Banking Day
Eclipse Banking Day
 
Bessere Softwareentwicklung (Itemis Wintercon)
Bessere Softwareentwicklung (Itemis Wintercon)Bessere Softwareentwicklung (Itemis Wintercon)
Bessere Softwareentwicklung (Itemis Wintercon)
 

Dernier

+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
?#DUbAI#??##{{(☎️+971_581248768%)**%*]'#abortion pills for sale in dubai@
 

Dernier (20)

From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
Tech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdfTech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdf
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 

Xtext Eclipse Con

  • 1. Textual Modeling Framework Jan Koehnlein - Sven Efftinge itemis Wednesday, March 25, 2009
  • 3. Domain-Specific Language (DSL) A DSL is a formal, processable language targeting at a specific viewpoint or aspect of a software system. Wednesday, March 25, 2009
  • 4. Domain-Specific Language (DSL) A DSL is a formal, processable language targeting at a specific viewpoint or aspect of a software system. It’s semantics, flexibility and notation is designed in order to support working with that viewpoint as good as possible. Wednesday, March 25, 2009
  • 5. Why DSLs? • higher abstractions • avoid redundancy • separation of concerns • use domain concepts (Ubiquitous Language) Wednesday, March 25, 2009
  • 8. Complicated & Expensive ? Wednesday, March 25, 2009
  • 10. How we address this with Wednesday, March 25, 2009
  • 21. grammar org.xtext.example.MyDsl with org.eclipse.xtext.common.Terminals generate myDsl quot;http://www.xtext.org/example/MyDslquot; Model: (types+=Type)*; Type: Datatype | Entity; Datatype: 'datatype' name=ID; Entity: 'entity' name=ID '{' (features+=Feature)* '}'; Feature: type=[Type] name=ID; Wednesday, March 25, 2009
  • 22. Grammar Definition grammar org.xtext.example.MyDsl with org.eclipse.xtext.common.Terminals generate myDsl quot;http://www.xtext.org/example/MyDslquot; Model: (types+=Type)*; Type: Datatype | Entity; Datatype: 'datatype' name=ID; Entity: 'entity' name=ID '{' (features+=Feature)* '}'; Feature: type=[Type] name=ID; Wednesday, March 25, 2009
  • 23. Grammar Definition Terminal Rule Import grammar org.xtext.example.MyDsl with org.eclipse.xtext.common.Terminals generate myDsl quot;http://www.xtext.org/example/MyDslquot; Model: (types+=Type)*; Type: Datatype | Entity; Datatype: 'datatype' name=ID; Entity: 'entity' name=ID '{' (features+=Feature)* '}'; Feature: type=[Type] name=ID; Wednesday, March 25, 2009
  • 24. Grammar Definition Terminal Rule Import grammar org.xtext.example.MyDsl Derived with org.eclipse.xtext.common.Terminals Metamodel generate myDsl quot;http://www.xtext.org/example/MyDslquot; Model: (types+=Type)*; Type: Datatype | Entity; Datatype: 'datatype' name=ID; Entity: 'entity' name=ID '{' (features+=Feature)* '}'; Feature: type=[Type] name=ID; Wednesday, March 25, 2009
  • 25. Grammar Definition Terminal Rule Import grammar org.xtext.example.MyDsl Derived with org.eclipse.xtext.common.Terminals Metamodel generate myDsl quot;http://www.xtext.org/example/MyDslquot; Model: Parser (types+=Type)*; Rules Type: Datatype | Entity; Datatype: 'datatype' name=ID; Entity: 'entity' name=ID '{' (features+=Feature)* '}'; Feature: type=[Type] name=ID; Wednesday, March 25, 2009
  • 26. Grammar Definition Terminal Rule Import grammar org.xtext.example.MyDsl Derived with org.eclipse.xtext.common.Terminals Metamodel generate myDsl quot;http://www.xtext.org/example/MyDslquot; Containment Reference Model: Parser (types+=Type)*; Rules Type: Datatype | Entity; Datatype: 'datatype' name=ID; Entity: 'entity' name=ID '{' (features+=Feature)* '}'; Feature: type=[Type] name=ID; Wednesday, March 25, 2009
  • 27. Grammar Definition Terminal Rule Import grammar org.xtext.example.MyDsl Derived with org.eclipse.xtext.common.Terminals Metamodel generate myDsl quot;http://www.xtext.org/example/MyDslquot; Containment Reference Model: Parser (types+=Type)*; Cardinality Rules Type: Datatype | Entity; Datatype: 'datatype' name=ID; Entity: 'entity' name=ID '{' (features+=Feature)* '}'; Feature: type=[Type] name=ID; Wednesday, March 25, 2009
  • 28. Grammar Definition Terminal Rule Import grammar org.xtext.example.MyDsl Derived with org.eclipse.xtext.common.Terminals Metamodel generate myDsl quot;http://www.xtext.org/example/MyDslquot; Containment Reference Model: Parser (types+=Type)*; Cardinality Rules Type: Datatype | Entity; Alternatives Datatype: 'datatype' name=ID; Entity: 'entity' name=ID '{' (features+=Feature)* '}'; Feature: type=[Type] name=ID; Wednesday, March 25, 2009
  • 29. Grammar Definition Terminal Rule Import grammar org.xtext.example.MyDsl Derived with org.eclipse.xtext.common.Terminals Metamodel generate myDsl quot;http://www.xtext.org/example/MyDslquot; Containment Reference Model: Parser (types+=Type)*; Cardinality Rules Type: Datatype | Entity; Alternatives Datatype: 'datatype' name=ID; Call to Entity: Terminal 'entity' name=ID '{' (features+=Feature)* Rule '}'; Feature: type=[Type] name=ID; Wednesday, March 25, 2009
  • 30. Grammar Definition Terminal Rule Import grammar org.xtext.example.MyDsl Derived with org.eclipse.xtext.common.Terminals Metamodel generate myDsl quot;http://www.xtext.org/example/MyDslquot; Containment Reference Model: Parser (types+=Type)*; Cardinality Rules Type: Datatype | Entity; Alternatives Datatype: 'datatype' name=ID; Call to Entity: Keywords Terminal 'entity' name=ID '{' (features+=Feature)* Rule '}'; Feature: type=[Type] name=ID; Wednesday, March 25, 2009
  • 31. Grammar Definition Terminal Rule Import grammar org.xtext.example.MyDsl Derived with org.eclipse.xtext.common.Terminals Metamodel generate myDsl quot;http://www.xtext.org/example/MyDslquot; Containment Reference Model: Parser (types+=Type)*; Cardinality Rules Type: Datatype | Entity; Alternatives Datatype: 'datatype' name=ID; Call to Entity: Keywords Terminal 'entity' name=ID '{' (features+=Feature)* Cross Rule '}'; Reference Feature: type=[Type] name=ID; Wednesday, March 25, 2009
  • 32. Metamodel Derivation MyDsl grammar org.xtext.example.MyDsl with org.eclipse.xtext.common.Terminals Model generate myDsl quot;http://www.xtext.org/example/MyDslquot; Model: * Type (types+=Type)*; name: String Type: Datatype | Entity; Datatype: Datatype Entity 'datatype' name=ID; Entity: 'entity' name=ID '{' type (features+=Feature)* * '}'; Feature * name: String Feature: type=[Datatype] name=ID; Wednesday, March 25, 2009
  • 33. Metamodel Derivation MyDsl grammar org.xtext.example.MyDsl with org.eclipse.xtext.common.Terminals Model generate myDsl quot;http://www.xtext.org/example/MyDslquot; Model: * Type (types+=Type)*; name: String Type: Datatype | Entity; Datatype: Datatype Entity 'datatype' name=ID; Entity: 'entity' name=ID '{' type (features+=Feature)* * '}'; Feature * name: String Feature: type=[Datatype] name=ID; Wednesday, March 25, 2009
  • 34. Metamodel Derivation MyDsl grammar org.xtext.example.MyDsl with org.eclipse.xtext.common.Terminals Model generate myDsl quot;http://www.xtext.org/example/MyDslquot; Model: * Type (types+=Type)*; name: String Type: Datatype | Entity; Datatype: Datatype Entity 'datatype' name=ID; Entity: 'entity' name=ID '{' type (features+=Feature)* * '}'; Feature * name: String Feature: type=[Datatype] name=ID; Wednesday, March 25, 2009
  • 35. Metamodel Derivation MyDsl grammar org.xtext.example.MyDsl with org.eclipse.xtext.common.Terminals Model generate myDsl quot;http://www.xtext.org/example/MyDslquot; Model: * Type (types+=Type)*; name: String Type: Datatype | Entity; Datatype: Datatype Entity 'datatype' name=ID; Entity: 'entity' name=ID '{' type (features+=Feature)* * '}'; Feature * name: String Feature: type=[Datatype] name=ID; Wednesday, March 25, 2009
  • 36. Metamodel Derivation MyDsl grammar org.xtext.example.MyDsl with org.eclipse.xtext.common.Terminals Model generate myDsl quot;http://www.xtext.org/example/MyDslquot; Model: * Type (types+=Type)*; name: String Type: Datatype | Entity; Datatype: Datatype Entity 'datatype' name=ID; Entity: 'entity' name=ID '{' type (features+=Feature)* * '}'; Feature * name: String Feature: type=[Datatype] name=ID; Wednesday, March 25, 2009
  • 37. Metamodel Derivation MyDsl grammar org.xtext.example.MyDsl with org.eclipse.xtext.common.Terminals Model generate myDsl quot;http://www.xtext.org/example/MyDslquot; Model: * Type (types+=Type)*; name: String Type: Datatype | Entity; Datatype: Datatype Entity 'datatype' name=ID; Entity: 'entity' name=ID '{' type (features+=Feature)* * '}'; Feature * name: String Feature: type=[Datatype] name=ID; Wednesday, March 25, 2009
  • 38. Metamodel Derivation MyDsl grammar org.xtext.example.MyDsl with org.eclipse.xtext.common.Terminals Model generate myDsl quot;http://www.xtext.org/example/MyDslquot; Model: * Type (types+=Type)*; name: String Type: Datatype | Entity; Datatype: Datatype Entity 'datatype' name=ID; Entity: 'entity' name=ID '{' type (features+=Feature)* * '}'; Feature * name: String Feature: type=[Datatype] name=ID; Wednesday, March 25, 2009
  • 39. Metamodel Derivation MyDsl grammar org.xtext.example.MyDsl with org.eclipse.xtext.common.Terminals Model generate myDsl quot;http://www.xtext.org/example/MyDslquot; Model: * Type (types+=Type)*; name: String Type: Datatype | Entity; Datatype: Datatype Entity 'datatype' name=ID; Entity: 'entity' name=ID '{' type (features+=Feature)* * '}'; Feature * name: String Feature: type=[Datatype] name=ID; Wednesday, March 25, 2009
  • 40. Metamodel Derivation MyDsl grammar org.xtext.example.MyDsl with org.eclipse.xtext.common.Terminals Model generate myDsl quot;http://www.xtext.org/example/MyDslquot; Model: * Type (types+=Type)*; name: String Type: Datatype | Entity; Datatype: Datatype Entity 'datatype' name=ID; Entity: 'entity' name=ID '{' type (features+=Feature)* * '}'; Feature * name: String Feature: type=[Datatype] name=ID; Wednesday, March 25, 2009
  • 41. Metamodel Derivation MyDsl grammar org.xtext.example.MyDsl with org.eclipse.xtext.common.Terminals Model generate myDsl quot;http://www.xtext.org/example/MyDslquot; Model: * Type (types+=Type)*; name: String Type: Datatype | Entity; Datatype: Datatype Entity 'datatype' name=ID; Entity: 'entity' name=ID '{' type (features+=Feature)* * '}'; Feature * name: String Feature: type=[Datatype] name=ID; Wednesday, March 25, 2009
  • 42. Metamodel Derivation MyDsl grammar org.xtext.example.MyDsl with org.eclipse.xtext.common.Terminals Model generate myDsl quot;http://www.xtext.org/example/MyDslquot; Model: * Type (types+=Type)*; name: String Type: Datatype | Entity; Datatype: Datatype Entity 'datatype' name=ID; Entity: 'entity' name=ID '{' type (features+=Feature)* * '}'; Feature * name: String Feature: type=[Datatype] name=ID; Wednesday, March 25, 2009
  • 43. Metamodel Derivation MyDsl grammar org.xtext.example.MyDsl with org.eclipse.xtext.common.Terminals Model generate myDsl quot;http://www.xtext.org/example/MyDslquot; Model: * Type (types+=Type)*; name: String Type: Datatype | Entity; Datatype: Datatype Entity 'datatype' name=ID; Entity: 'entity' name=ID '{' type (features+=Feature)* * '}'; Feature * name: String Feature: type=[Datatype] name=ID; Wednesday, March 25, 2009
  • 45. Based on the grammar and Ecore models, Xtext provides you with sensible default implementations. licensed by http://www.wordle.net/ Wednesday, March 25, 2009
  • 51. Customizing the LabelProvider public class MySpecialLabelProvider extends DefaultLabelProvider { public String label(Feature f) { return f.getName()+quot;:quot;+f.getType().getName(); } } ‣Naming Convention ‣Polymorphic Dispatch ‣Fault tolerance Wednesday, March 25, 2009
  • 54. Dependency management licensed by http://www.wordle.net/ Wednesday, March 25, 2009
  • 55. Dependency management licensed by http://www.wordle.net/ Wednesday, March 25, 2009
  • 56. Dependency management licensed by http://www.wordle.net/ Wednesday, March 25, 2009
  • 57. Dependency management licensed by http://www.wordle.net/ Wednesday, March 25, 2009
  • 58. Dependency management licensed by http://www.wordle.net/ Wednesday, March 25, 2009
  • 59. MyCustomLabelProvider licensed by http://www.wordle.net/ Wednesday, March 25, 2009
  • 60. Dependency Injection with Google fGuice Wednesday, March 25, 2009
  • 61. Dependency Injection with Google fGuice Wednesday, March 25, 2009
  • 62. Dependency Injection with Google fGuice ‣No dependency to concrete implementation Wednesday, March 25, 2009
  • 63. Dependency Injection with Google fGuice ‣No dependency to concrete implementation ‣No explicit construction Wednesday, March 25, 2009
  • 64. Dependency Injection with Google fGuice ‣No dependency to concrete implementation ‣No explicit construction ‣Easy testing Wednesday, March 25, 2009
  • 65. Dependency Injection with Google fGuice ‣No dependency to concrete implementation ‣No explicit construction ‣Easy testing ‣Easy composition Wednesday, March 25, 2009
  • 66. Configuration of Components in Xtext AbstractDeclarativeModule DefaultRuntimeModule DefaultUIModule From Xtext Your Project GeneratedRuntimeModule GeneratedUIModule RuntimeModule UIModule Wednesday, March 25, 2009
  • 67. Configuration of Components in Xtext /** * used to register components to be used within the IDE. */ public class DomainmodelUiModule extends GeneratedDomainmodelUiModule { @Override public Class<? extends ILabelProvider> bindILabelProvider() { return MySpecialLabelProvider.class; } } Wednesday, March 25, 2009
  • 68. and Equinox Injector is created during Bundle.start(...) @Override public void start(BundleContext context) throws Exception { super.start(context); INSTANCE = this; injector = Guice.createInjector( new DomainmodelRuntimeModule(), new DomainmodelUiModule()); } Wednesday, March 25, 2009
  • 69. and Equinox ExecutableExtensions are created via IExecutableExtensionFactory <extension point=quot;org.eclipse.emf.ecore.extension_parserquot;> <parser class=quot;my.pack.DomainmodelExecutableExtensionFactory: org.eclipse.xtext.resource.XtextResourceFactoryquot; type=quot;dmodelquot;> </parser> </extension> Wednesday, March 25, 2009
  • 70. Composable Code Generator ‣ generator is composed of “fragments” Wednesday, March 25, 2009
  • 71. Composable Code Generator ‣ generator is composed of “fragments” ‣ fragments can contribute to: Wednesday, March 25, 2009
  • 72. Composable Code Generator ‣ generator is composed of “fragments” ‣ fragments can contribute to: ‣ Manifest.MF Wednesday, March 25, 2009
  • 73. Composable Code Generator ‣ generator is composed of “fragments” ‣ fragments can contribute to: ‣ Manifest.MF ‣ plugin.xml Wednesday, March 25, 2009
  • 74. Composable Code Generator ‣ generator is composed of “fragments” ‣ fragments can contribute to: ‣ Manifest.MF ‣ plugin.xml ‣ Guice modules Wednesday, March 25, 2009
  • 75. Composable Code Generator ‣ generator is composed of “fragments” ‣ fragments can contribute to: ‣ Manifest.MF ‣ plugin.xml ‣ Guice modules ‣ Add your own fragments Wednesday, March 25, 2009
  • 78. Galileo • Index Wednesday, March 25, 2009
  • 79. Galileo • Index • Enum Rules Wednesday, March 25, 2009
  • 80. Galileo • Index • Enum Rules • Bug fixing / Performance Tuning Wednesday, March 25, 2009
  • 81. Galileo • Index • Enum Rules • Bug fixing / Performance Tuning • Documentation Wednesday, March 25, 2009
  • 82. Galileo • Index • Enum Rules • Bug fixing / Performance Tuning • Documentation • Sugar (Wizards, Tutorials, etc.) Wednesday, March 25, 2009
  • 84. Post Galileo ‣ More UI features Wednesday, March 25, 2009
  • 85. Post Galileo ‣ More UI features ‣Basic Language Libraries Wednesday, March 25, 2009
  • 86. Post Galileo ‣ More UI features ‣Basic Language Libraries ‣“Eat your own dog food” continued Wednesday, March 25, 2009
  • 87. Thank you very much for listening Visit the project’s web site : www.xtext.org Copyright 2009 by itemis Wednesday, March 25, 2009

Notes de l'éditeur