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 voidattr(TextAttr oAttr)Change attributes in the rich text representation.voidembed(TextEmbed poEmbed)voidfield(TextField poField)Add a field to the rich text representation.voidpara()Output a paragraph break to the rich text representation.voidreset()booleansuppressAttributes()voidtext(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:TextMarkupBaseAdd text to the rich text representation.- Specified by:
textin classTextMarkupBase- Parameters:
sText- - Text to be added.
-
attr
public void attr(TextAttr oAttr)
Description copied from class:TextMarkupBaseChange 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:
attrin 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:TextMarkupBaseAdd a field to the rich text representation.- Overrides:
fieldin classTextMarkupBase
-
embed
public void embed(TextEmbed poEmbed)
-
para
public void para()
Description copied from class:TextMarkupBaseOutput a paragraph break to the rich text representation.- Specified by:
parain classTextMarkupBase
-
reset
public void reset()
-
suppressAttributes
public boolean suppressAttributes()
-
-