Package com.adobe.xfa.text.markup
Class MarkupOut
- java.lang.Object
-
- com.adobe.xfa.text.TextMarkupBase
-
- com.adobe.xfa.text.markup.MarkupOut
-
- Direct Known Subclasses:
MarkupEmbed
,MarkupEngineOut
,MarkupField
,MarkupText
public class MarkupOut extends TextMarkupBase
This class exists for historical purposes. It exists in the class hierarchy between TextMkBase and TextMarkupEngineOut, but provides no additional value. While there are implementations of some virtual methods, they do nothing. We may eventually remove this class. Please don't extend it.For more information, please see the extenral documentation.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
attr(TextAttr oAttr)
Change attributes in the rich text representation.void
embed(TextEmbed poEmbed)
void
field(TextField poField)
Add a field to the rich text representation.void
para()
Output a paragraph break to the rich text representation.void
reset()
boolean
suppressAttributes()
void
text(java.lang.String sText)
Add text to the rich text representation.-
Methods inherited from class com.adobe.xfa.text.TextMarkupBase
attributePtr, closeScopedBlock, issueFirstPara, legacyPositioning, marker, markerEnd, markerStart, openScopedBlock
-
-
-
-
Method Detail
-
text
public void text(java.lang.String sText)
Description copied from class:TextMarkupBase
Add text to the rich text representation.- Specified by:
text
in classTextMarkupBase
- Parameters:
sText
- - Text to be added.
-
attr
public void attr(TextAttr oAttr)
Description copied from class:TextMarkupBase
Change attributes in the rich text representation.Because the rich text representation is built up serially, this method sets the attributes for subsequent text, until called again.
- Specified by:
attr
in classTextMarkupBase
- Parameters:
oAttr
- - Attributes to set. The implementation must honour enabled attributes and carry forward disabled ones.
-
field
public void field(TextField poField)
Description copied from class:TextMarkupBase
Add a field to the rich text representation.- Overrides:
field
in classTextMarkupBase
-
embed
public void embed(TextEmbed poEmbed)
-
para
public void para()
Description copied from class:TextMarkupBase
Output a paragraph break to the rich text representation.- Specified by:
para
in classTextMarkupBase
-
reset
public void reset()
-
suppressAttributes
public boolean suppressAttributes()
-
-