Class UnparsedDSCComment
- java.lang.Object
-
- org.apache.xmlgraphics.ps.dsc.events.AbstractEvent
-
- org.apache.xmlgraphics.ps.dsc.events.UnparsedDSCComment
-
- All Implemented Interfaces:
DSCParserConstants,DSCComment,DSCEvent
public class UnparsedDSCComment extends AbstractEvent implements DSCComment
Represents a DSC comment that is not parsed into one of the concrete DSCComment subclasses. It is used whenever a DSC comment is encountered that is unknown to the parser.- See Also:
DSCCommentFactory
-
-
Field Summary
-
Fields inherited from interface org.apache.xmlgraphics.ps.dsc.DSCParserConstants
COMMENT, DSC_COMMENT, EOF, HEADER_COMMENT, LINE
-
-
Constructor Summary
Constructors Constructor Description UnparsedDSCComment(java.lang.String name)Creates a new instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DSCCommentasDSCComment()Casts this instance to a DSCComment if possible.voidgenerate(PSGenerator gen)Writes the event to the given PSGenerator.intgetEventType()Returns the event type.java.lang.StringgetName()Returns the name of the DSC comment.booleanhasValues()Indicates whether this DSC comment has values.booleanisAtend()Indicates whether the DSC comment's value is "Atend".booleanisDSCComment()Indicates whether the instance is a DSC comment.voidparseValue(java.lang.String value)Parses the value of the DSC comment.-
Methods inherited from class org.apache.xmlgraphics.ps.dsc.events.AbstractEvent
asLine, isComment, isHeaderComment, isLine
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.apache.xmlgraphics.ps.dsc.events.DSCEvent
asLine, isComment, isHeaderComment, isLine
-
-
-
-
Method Detail
-
getName
public java.lang.String getName()
Description copied from interface:DSCCommentReturns the name of the DSC comment.- Specified by:
getNamein interfaceDSCComment- Returns:
- the name of the DSC comment (without the "%%" prefix)
- See Also:
DSCComment.getName()
-
hasValues
public boolean hasValues()
Description copied from interface:DSCCommentIndicates whether this DSC comment has values.- Specified by:
hasValuesin interfaceDSCComment- Returns:
- true if the DSC comment has values
- See Also:
DSCComment.hasValues()
-
isAtend
public boolean isAtend()
Description copied from interface:DSCCommentIndicates whether the DSC comment's value is "Atend".- Specified by:
isAtendin interfaceDSCComment- Returns:
- true if the value is "Atend"
- See Also:
DSCComment.isAtend()
-
parseValue
public void parseValue(java.lang.String value)
Description copied from interface:DSCCommentParses the value of the DSC comment.- Specified by:
parseValuein interfaceDSCComment- Parameters:
value- the value- See Also:
DSCComment.parseValue(java.lang.String)
-
generate
public void generate(PSGenerator gen) throws java.io.IOException
Description copied from interface:DSCEventWrites the event to the given PSGenerator.- Specified by:
generatein interfaceDSCComment- Specified by:
generatein interfaceDSCEvent- Parameters:
gen- the PSGenerator to write to- Throws:
java.io.IOException- In case of an I/O error- See Also:
DSCEvent.generate(org.apache.xmlgraphics.ps.PSGenerator)
-
isDSCComment
public boolean isDSCComment()
Description copied from interface:DSCEventIndicates whether the instance is a DSC comment.- Specified by:
isDSCCommentin interfaceDSCEvent- Overrides:
isDSCCommentin classAbstractEvent- Returns:
- true if the instance is a DSC comment
- See Also:
AbstractEvent.isDSCComment()
-
getEventType
public int getEventType()
Description copied from interface:DSCEventReturns the event type.- Specified by:
getEventTypein interfaceDSCEvent- Returns:
- the event type (see
DSCParserConstants) - See Also:
DSCEvent.getEventType()
-
asDSCComment
public DSCComment asDSCComment()
Description copied from interface:DSCEventCasts this instance to a DSCComment if possible.- Specified by:
asDSCCommentin interfaceDSCEvent- Overrides:
asDSCCommentin classAbstractEvent- Returns:
- this event as a DSCComment
- See Also:
AbstractEvent.asDSCComment()
-
-