|
fop 1.0 | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.apache.fop.fo.FONode
org.apache.fop.fo.FObj
org.apache.fop.fo.FObjMixed
org.apache.fop.fo.flow.InlineLevel
org.apache.fop.fo.flow.Inline
org.apache.fop.fo.flow.BasicLink
public class BasicLink
Class modelling the
fo:basic-link
object.
This class contains the logic to determine the link represented by this FO,
and whether that link is external (uses a URI) or internal (an id
reference).
Nested Class Summary |
---|
Nested classes/interfaces inherited from class org.apache.fop.fo.FObj |
---|
FObj.FObjIterator |
Nested classes/interfaces inherited from class org.apache.fop.fo.FONode |
---|
FONode.FONodeIterator, FONode.GatherContextInfoFunction |
Field Summary |
---|
Fields inherited from class org.apache.fop.fo.FObjMixed |
---|
currentTextNode, lastFOTextProcessed |
Fields inherited from class org.apache.fop.fo.FObj |
---|
firstChild |
Fields inherited from class org.apache.fop.fo.FONode |
---|
FO_URI, FOX_URI, locator, log, parent, siblings |
Constructor Summary | |
---|---|
BasicLink(FONode parent)
Construct a BasicLink instance with the given FONode
as its parent. |
Method Summary | |
---|---|
void |
bind(PropertyList pList)
Bind property values from the property list to the FO node. |
protected void |
endOfNode()
Primarily used for making final content model validation checks and/or informing the FOEventHandler that the end of this FO
has been reached. |
java.lang.String |
getExternalDestination()
Get the value of the external-destination property. |
java.lang.String |
getInternalDestination()
Get the value of the internal-destination property. |
java.lang.String |
getLocalName()
Returns the local name (i.e. |
int |
getNameId()
Returns the Constants class integer value of this node |
int |
getShowDestination()
Get the value of the show-destination property. |
boolean |
hasExternalDestination()
Convenience method to check if this instance has an external destination |
boolean |
hasInternalDestination()
Convenience method to check if this instance has an internal destination. |
protected void |
startOfNode()
Called after processNode() is called. |
protected void |
validateChildNode(org.xml.sax.Locator loc,
java.lang.String nsURI,
java.lang.String localName)
Checks to make sure, during SAX processing of input document, that the incoming node is valid for this (parent) node (e.g., checking to see that fo:table is not an immediate child of fo:root )
called from FOTreeBuilder.startElement(String, String, String, Attributes)
before constructing the child FObj . |
Methods inherited from class org.apache.fop.fo.flow.Inline |
---|
getAlignmentAdjust, getAlignmentBaseline, getBaselineShift, getDominantBaseline, getPtr |
Methods inherited from class org.apache.fop.fo.flow.InlineLevel |
---|
getColor, getCommonBorderPaddingBackground, getCommonFont, getCommonMarginInline, getKeepWithNext, getKeepWithPrevious, getLineHeight |
Methods inherited from class org.apache.fop.fo.FObjMixed |
---|
addChildNode, characters, charIterator, finalizeNode, handleWhiteSpaceFor |
Methods inherited from class java.lang.Object |
---|
equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public BasicLink(FONode parent)
FONode
as its parent.
parent
- FONode
that is the parent of this objectMethod Detail |
---|
public void bind(PropertyList pList) throws FOPException
bind
in class Inline
pList
- the PropertyList where the properties can be found.
FOPException
- if there is a problem binding the valuesprotected void startOfNode() throws FOPException
startOfNode
in class Inline
FOPException
- FOP Exceptionprotected void endOfNode() throws FOPException
FOEventHandler
that the end of this FO
has been reached.
The default implementation simply calls FONode.finalizeNode()
, without
sending any event to the FOEventHandler
.
super.endOfNode(); // invoke finalizeNode()
getFOEventHandler().endXXX(); // send endOfNode() notification
endOfNode
in class Inline
FOPException
- if there's a problem during processingprotected void validateChildNode(org.xml.sax.Locator loc, java.lang.String nsURI, java.lang.String localName) throws ValidationException
fo:table
is not an immediate child of fo:root
)
called from FOTreeBuilder.startElement(String, String, String, Attributes)
before constructing the child FObj
.
validateChildNode
in class Inline
loc
- location in the FO source filensURI
- namespace of incoming nodelocalName
- name of the incoming node (without namespace prefix)
ValidationException
- if incoming node not valid for parentpublic java.lang.String getInternalDestination()
internal-destination
property.
public java.lang.String getExternalDestination()
external-destination
property.
public boolean hasInternalDestination()
true
if this basic link has an internal destination;
false
otherwisepublic boolean hasExternalDestination()
true
if this basic link has an external destination;
false
otherwisepublic int getShowDestination()
show-destination
property.
public java.lang.String getLocalName()
getLocalName
in class Inline
public int getNameId()
Constants
class integer value of this node
getNameId
in class Inline
Constants.FO_BASIC_LINK
|
fop 1.0 | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |