Package org.apache.fop.fonts.type1
Class PostscriptParser.PSVariable
- java.lang.Object
-
- org.apache.fop.fonts.type1.PostscriptParser.PSElement
-
- org.apache.fop.fonts.type1.PostscriptParser.PSVariable
-
- Enclosing class:
- PostscriptParser
public class PostscriptParser.PSVariable extends PostscriptParser.PSElement
An object representing a Postscript variable
-
-
Field Summary
Fields Modifier and Type Field Description private java.lang.String
value
-
Fields inherited from class org.apache.fop.fonts.type1.PostscriptParser.PSElement
binaryEntries, endPoint, hasMore, operator, readBinary, tokens
-
-
Constructor Summary
Constructors Constructor Description PSVariable(java.lang.String operator, int startPoint)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getValue()
Gets the value of the Postscript variablevoid
parseByte(byte cur, int pos)
Passes responsibility for processing the byte stream to the PostScript objectvoid
parseToken(java.lang.String token, int curPos)
Delegates the parse routine to a sub classvoid
setEndPoint(int endPoint)
Sets the end point location of the current Postscript variable.void
setValue(java.lang.String value)
Sets the value of the Postscript variable value-
Methods inherited from class org.apache.fop.fonts.type1.PostscriptParser.PSElement
getBinaryEntries, getBinaryEntryByIndex, getEndPoint, getFoundUnexpected, getOperator, getStartPoint, hasMore, isInteger, parse, setFoundUnexpected
-
-
-
-
Method Detail
-
parseToken
public void parseToken(java.lang.String token, int curPos)
Description copied from class:PostscriptParser.PSElement
Delegates the parse routine to a sub class- Specified by:
parseToken
in classPostscriptParser.PSElement
- Parameters:
token
- The token which to parse
-
parseByte
public void parseByte(byte cur, int pos)
Description copied from class:PostscriptParser.PSElement
Passes responsibility for processing the byte stream to the PostScript object- Specified by:
parseByte
in classPostscriptParser.PSElement
- Parameters:
cur
- The byte currently being readpos
- The position of the given byte
-
setValue
public void setValue(java.lang.String value)
Sets the value of the Postscript variable value- Parameters:
value
- The value to set
-
getValue
public java.lang.String getValue()
Gets the value of the Postscript variable- Returns:
- Returns the value as a String
-
setEndPoint
public void setEndPoint(int endPoint)
Sets the end point location of the current Postscript variable.- Parameters:
endPoint
- The end point location as an integer
-
-