Uses of Interface
org.ourgrid.common.spec.grammar.Grammar

Packages that use Grammar
org.ourgrid.common.spec   
org.ourgrid.common.spec.grammar   
org.ourgrid.common.spec.grammar.io   
org.ourgrid.common.spec.syntactical   
 

Uses of Grammar in org.ourgrid.common.spec
 

Methods in org.ourgrid.common.spec with parameters of type Grammar
 SyntacticalAnalyzer CompilerModulesFactory.createSyntacticalAnalyzer(LexicalAnalyzer lexicalAnalyzer, Grammar languageGrammar, SemanticAnalyzer semantic)
          Makes an instance of the Syntactical Module.
 SyntacticalAnalyzer CommonCModulesFactory.createSyntacticalAnalyzer(LexicalAnalyzer lexicalAnalyzer, Grammar languageGrammar, SemanticAnalyzer semantic)
           
 

Uses of Grammar in org.ourgrid.common.spec.grammar
 

Classes in org.ourgrid.common.spec.grammar that implement Grammar
 class CommonGrammar
          From Project: Caymman(DSC/UFCG) Description: This class represents a LL(1) grammar.
 

Uses of Grammar in org.ourgrid.common.spec.grammar.io
 

Methods in org.ourgrid.common.spec.grammar.io that return Grammar
 Grammar GrammarReader.read(java.io.File fileName, Grammar grammar)
          Read a gammar description file from a determined format and returns a Grammar object after the process
 Grammar GalsGrammarReader.read(java.io.File grammarFile, Grammar toFillGrammar)
           
 Grammar GrammarReader.read(java.io.InputStream stream, Grammar grammar)
          Read a gammar description file from a determined format and returns a Grammar object after the process
 Grammar GalsGrammarReader.read(java.io.InputStream stream, Grammar toFillGrammar)
           
 

Methods in org.ourgrid.common.spec.grammar.io with parameters of type Grammar
 Grammar GrammarReader.read(java.io.File fileName, Grammar grammar)
          Read a gammar description file from a determined format and returns a Grammar object after the process
 Grammar GalsGrammarReader.read(java.io.File grammarFile, Grammar toFillGrammar)
           
 Grammar GrammarReader.read(java.io.InputStream stream, Grammar grammar)
          Read a gammar description file from a determined format and returns a Grammar object after the process
 Grammar GalsGrammarReader.read(java.io.InputStream stream, Grammar toFillGrammar)
           
 

Uses of Grammar in org.ourgrid.common.spec.syntactical
 

Constructors in org.ourgrid.common.spec.syntactical with parameters of type Grammar
CommonSyntacticalAnalyzer(LexicalAnalyzer lexical, Grammar grammar, SemanticAnalyzer semantic)
          The constructor.