SlideShare una empresa de Scribd logo
1 de 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

Más contenido relacionado

La actualidad más candente

Extending the Xbase Typesystem
Extending the Xbase TypesystemExtending the Xbase Typesystem
Extending the Xbase TypesystemSebastian Zarnekow
 
Everything is Permitted: Extending Built-ins
Everything is Permitted: Extending Built-insEverything is Permitted: Extending Built-ins
Everything is Permitted: Extending Built-insAndrew Dupont
 
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 XMLMohammad Shaker
 
Synapseindia object oriented programming in php
Synapseindia object oriented programming in phpSynapseindia object oriented programming in php
Synapseindia object oriented programming in phpSynapseindiappsdevelopment
 
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 PythonSujith Kumar
 
Advanced php
Advanced phpAdvanced php
Advanced phphamfu
 
Architecture logicielle #3 : object oriented design
Architecture logicielle #3 : object oriented designArchitecture logicielle #3 : object oriented design
Architecture logicielle #3 : object oriented designJean Michel
 
Object oriented programming with python
Object oriented programming with pythonObject oriented programming with python
Object oriented programming with pythonArslan Arshad
 
Ios development
Ios developmentIos development
Ios developmentelnaqah
 
Designing a JavaFX Mobile application
Designing a JavaFX Mobile applicationDesigning a JavaFX Mobile application
Designing a JavaFX Mobile applicationFabrizio Giudici
 
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 BORSANIYAMaulik Borsaniya
 
Uncommon Design Patterns
Uncommon Design PatternsUncommon Design Patterns
Uncommon Design PatternsStefano Fago
 
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 PhpMichael Girouard
 
Xtext's new Formatter API
Xtext's new Formatter APIXtext's new Formatter API
Xtext's new Formatter APImeysholdt
 
Object Oriented Programming in PHP
Object Oriented Programming in PHPObject Oriented Programming in PHP
Object Oriented Programming in PHPLorna Mitchell
 

La actualidad más candente (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
 

Similar a Xtext Eclipse Con

Jazoon 2010 - Building DSLs with Eclipse
Jazoon 2010 - Building DSLs with EclipseJazoon 2010 - Building DSLs with Eclipse
Jazoon 2010 - Building DSLs with EclipsePeter Friese
 
Building DSLs With Eclipse
Building DSLs With EclipseBuilding DSLs With Eclipse
Building DSLs With EclipsePeter Friese
 
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 ArchitecturePeter Friese
 
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 Javameysholdt
 
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)Rick Warren
 
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
 
Your Entity, Your Code
Your Entity, Your CodeYour Entity, Your Code
Your Entity, Your CodeDrupalDay
 
Ian 2014.10.24 weekly report
Ian 2014.10.24 weekly reportIan 2014.10.24 weekly report
Ian 2014.10.24 weekly reportLearningTech
 
Introduction To Csharp
Introduction To CsharpIntroduction To Csharp
Introduction To Csharpg_hemanth17
 
Introduction to-csharp-1229579367461426-1
Introduction to-csharp-1229579367461426-1Introduction to-csharp-1229579367461426-1
Introduction to-csharp-1229579367461426-1Sachin Singh
 
Introduction to CSharp
Introduction to CSharpIntroduction to CSharp
Introduction to CSharpMody Farouk
 
Introduction to csharp
Introduction to csharpIntroduction to csharp
Introduction to csharpRaga Vahini
 
Introduction to csharp
Introduction to csharpIntroduction to csharp
Introduction to csharpSatish Verma
 
Introduction to csharp
Introduction to csharpIntroduction to csharp
Introduction to csharpsinghadarsh
 
.Net Project Portfolio for Roger Loving
.Net Project Portfolio for Roger Loving.Net Project Portfolio for Roger Loving
.Net Project Portfolio for Roger Lovingrloving10
 

Similar a 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
 

Más de Sven Efftinge

Parsing Expression With Xtext
Parsing Expression With XtextParsing Expression With Xtext
Parsing Expression With XtextSven Efftinge
 
Language Engineering With Xtext
Language Engineering With XtextLanguage Engineering With Xtext
Language Engineering With XtextSven Efftinge
 
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 XtendSven Efftinge
 
Functional programming with Xtend
Functional programming with XtendFunctional programming with Xtend
Functional programming with XtendSven Efftinge
 
Codegeneration With Xtend
Codegeneration With XtendCodegeneration With Xtend
Codegeneration With XtendSven Efftinge
 
Domain Specific Languages (EclipseCon 2012)
Domain Specific Languages (EclipseCon 2012)Domain Specific Languages (EclipseCon 2012)
Domain Specific Languages (EclipseCon 2012)Sven Efftinge
 
Xtend @ EclipseCon 2012
Xtend @ EclipseCon 2012Xtend @ EclipseCon 2012
Xtend @ EclipseCon 2012Sven Efftinge
 
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 JavaSven Efftinge
 
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]Sven Efftinge
 
Xtext at MDD Day 2010
Xtext at MDD Day 2010Xtext at MDD Day 2010
Xtext at MDD Day 2010Sven Efftinge
 
Dependency Injection for Eclipse developers
Dependency Injection for Eclipse developersDependency Injection for Eclipse developers
Dependency Injection for Eclipse developersSven Efftinge
 
Challenges In Dsl Design
Challenges In Dsl DesignChallenges In Dsl Design
Challenges In Dsl DesignSven Efftinge
 
Code Generation in Agile Projects
Code Generation in Agile ProjectsCode Generation in Agile Projects
Code Generation in Agile ProjectsSven Efftinge
 
Bessere Softwareentwicklung (Itemis Wintercon)
Bessere Softwareentwicklung (Itemis Wintercon)Bessere Softwareentwicklung (Itemis Wintercon)
Bessere Softwareentwicklung (Itemis Wintercon)Sven Efftinge
 

Más 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)
 

Último

EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWEREMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWERMadyBayot
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processorsdebabhi2
 
MS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectorsMS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectorsNanddeep Nachan
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherRemote DBA Services
 
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...Angeliki Cooney
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...Martijn de Jong
 
Spring Boot vs Quarkus the ultimate battle - DevoxxUK
Spring Boot vs Quarkus the ultimate battle - DevoxxUKSpring Boot vs Quarkus the ultimate battle - DevoxxUK
Spring Boot vs Quarkus the ultimate battle - DevoxxUKJago de Vreede
 
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, Adobeapidays
 
ICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesrafiqahmad00786416
 
[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdfSandro Moreira
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyKhushali Kathiriya
 
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdfRising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdfOrbitshub
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FMESafe Software
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAndrey Devyatkin
 
FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024The Digital Insurer
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MIND CTI
 
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Victor Rentea
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingEdi Saputra
 
Cyberprint. Dark Pink Apt Group [EN].pdf
Cyberprint. Dark Pink Apt Group [EN].pdfCyberprint. Dark Pink Apt Group [EN].pdf
Cyberprint. Dark Pink Apt Group [EN].pdfOverkill Security
 
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 AmsterdamDEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 AmsterdamUiPathCommunity
 

Último (20)

EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWEREMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
MS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectorsMS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectors
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
Spring Boot vs Quarkus the ultimate battle - DevoxxUK
Spring Boot vs Quarkus the ultimate battle - DevoxxUKSpring Boot vs Quarkus the ultimate battle - DevoxxUK
Spring Boot vs Quarkus the ultimate battle - DevoxxUK
 
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
 
ICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesICT role in 21st century education and its challenges
ICT role in 21st century education and its challenges
 
[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : Uncertainty
 
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdfRising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024
 
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
 
Cyberprint. Dark Pink Apt Group [EN].pdf
Cyberprint. Dark Pink Apt Group [EN].pdfCyberprint. Dark Pink Apt Group [EN].pdf
Cyberprint. Dark Pink Apt Group [EN].pdf
 
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 AmsterdamDEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
 

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

Notas del editor