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
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:
-
Field Summary
Fields inherited from interface org.apache.xmlgraphics.ps.dsc.DSCParserConstants
COMMENT, DSC_COMMENT, EOF, HEADER_COMMENT, LINE
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionCasts this instance to a DSCComment if possible.void
generate
(PSGenerator gen) Writes the event to the given PSGenerator.int
Returns the event type.getName()
Returns the name of the DSC comment.boolean
Indicates whether this DSC comment has values.boolean
isAtend()
Indicates whether the DSC comment's value is "Atend".boolean
Indicates whether the instance is a DSC comment.void
parseValue
(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
-
Constructor Details
-
UnparsedDSCComment
Creates a new instance.- Parameters:
name
- the name of the DSC comment
-
-
Method Details
-
getName
Description copied from interface:DSCComment
Returns the name of the DSC comment.- Specified by:
getName
in interfaceDSCComment
- Returns:
- the name of the DSC comment (without the "%%" prefix)
- See Also:
-
hasValues
public boolean hasValues()Description copied from interface:DSCComment
Indicates whether this DSC comment has values.- Specified by:
hasValues
in interfaceDSCComment
- Returns:
- true if the DSC comment has values
- See Also:
-
isAtend
public boolean isAtend()Description copied from interface:DSCComment
Indicates whether the DSC comment's value is "Atend".- Specified by:
isAtend
in interfaceDSCComment
- Returns:
- true if the value is "Atend"
- See Also:
-
parseValue
Description copied from interface:DSCComment
Parses the value of the DSC comment.- Specified by:
parseValue
in interfaceDSCComment
- Parameters:
value
- the value- See Also:
-
generate
Description copied from interface:DSCEvent
Writes the event to the given PSGenerator.- Specified by:
generate
in interfaceDSCComment
- Specified by:
generate
in interfaceDSCEvent
- Parameters:
gen
- the PSGenerator to write to- Throws:
IOException
- In case of an I/O error- See Also:
-
isDSCComment
public boolean isDSCComment()Description copied from interface:DSCEvent
Indicates whether the instance is a DSC comment.- Specified by:
isDSCComment
in interfaceDSCEvent
- Overrides:
isDSCComment
in classAbstractEvent
- Returns:
- true if the instance is a DSC comment
- See Also:
-
getEventType
public int getEventType()Description copied from interface:DSCEvent
Returns the event type.- Specified by:
getEventType
in interfaceDSCEvent
- Returns:
- the event type (see
DSCParserConstants
) - See Also:
-
asDSCComment
Description copied from interface:DSCEvent
Casts this instance to a DSCComment if possible.- Specified by:
asDSCComment
in interfaceDSCEvent
- Overrides:
asDSCComment
in classAbstractEvent
- Returns:
- this event as a DSCComment
- See Also:
-