Package org.antlr.runtime
Class SerializedGrammar
- java.lang.Object
-
- org.antlr.runtime.SerializedGrammar
-
public class SerializedGrammar extends Object
-
-
Constructor Summary
Constructors Constructor Description SerializedGrammar(String filename)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected ListreadAlt(DataInputStream in)protected org.antlr.runtime.SerializedGrammar.BlockreadBlock(DataInputStream in)protected voidreadFile(DataInputStream in)protected org.antlr.runtime.SerializedGrammar.RulereadRule(DataInputStream in)protected ListreadRules(DataInputStream in, int numRules)protected StringreadString(DataInputStream in)StringtoString()
-
-
-
Field Detail
-
COOKIE
public static final String COOKIE
- See Also:
- Constant Field Values
-
FORMAT_VERSION
public static final int FORMAT_VERSION
- See Also:
- Constant Field Values
-
name
public String name
-
type
public char type
-
rules
public List rules
-
-
Constructor Detail
-
SerializedGrammar
public SerializedGrammar(String filename) throws IOException
- Throws:
IOException
-
-
Method Detail
-
readFile
protected void readFile(DataInputStream in) throws IOException
- Throws:
IOException
-
readRules
protected List readRules(DataInputStream in, int numRules) throws IOException
- Throws:
IOException
-
readRule
protected org.antlr.runtime.SerializedGrammar.Rule readRule(DataInputStream in) throws IOException
- Throws:
IOException
-
readBlock
protected org.antlr.runtime.SerializedGrammar.Block readBlock(DataInputStream in) throws IOException
- Throws:
IOException
-
readAlt
protected List readAlt(DataInputStream in) throws IOException
- Throws:
IOException
-
readString
protected String readString(DataInputStream in) throws IOException
- Throws:
IOException
-
-