Exemplo n.º 1
0
 /** Returns a grammar model backed up by this store. */
 public GrammarModel toGrammarModel() {
   if (this.model == null) {
     this.model = new GrammarModel(this);
     addObserver(this.model);
   }
   return this.model;
 }