Changeset 59 in default


Ignore:
Timestamp:
04/04/14 15:47:20 (10 years ago)
Author:
phdmakk
Message:

+ fixed minor typo

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/de.ugoe.cs.swe.bnftools.xtools/src/resource/tools/xtools/EbnfResourceTool.java

    r58 r59  
    6868 
    6969                //first approach 
    70                 System.out.println("first approach (top down)"); 
     70                System.out.println("***** first approach (top down)"); 
    7171                List<Rule> rules = EcoreUtil2.getAllContentsOfType(bnf, Rule.class); 
    7272                for (Rule r : rules) { 
     
    8181                 
    8282                //second approach 
    83                 System.out.println("second approach (bottom up)"); 
     83                System.out.println("***** second approach (bottom up)"); 
    8484                for (RuleReference ref : EcoreUtil2.getAllContentsOfType(bnf, RuleReference.class)) { 
    8585                        Rule r = EcoreUtil2.getContainerOfType(ref, Rule.class); 
     
    9090                 
    9191                //third approach 
    92                 System.out.println("thir approach (cross referencing)"); 
     92                System.out.println("***** third approach (cross referencing)"); 
    9393                for (Rule r : rules) { 
    9494                        System.out.println("Processing rule "+r.getName()); 
Note: See TracChangeset for help on using the changeset viewer.