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 List
readAlt(DataInputStream in)
protected org.antlr.runtime.SerializedGrammar.Block
readBlock(DataInputStream in)
protected void
readFile(DataInputStream in)
protected org.antlr.runtime.SerializedGrammar.Rule
readRule(DataInputStream in)
protected List
readRules(DataInputStream in, int numRules)
protected String
readString(DataInputStream in)
String
toString()
-
-
-
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
-
-