Package com.adobe.xfa.text.markup
Class MarkupIn
- java.lang.Object
-
- com.adobe.xfa.text.markup.MarkupIn
-
- Direct Known Subclasses:
MarkupEngineIn
public abstract class MarkupIn extends java.lang.Object
This class provides common base class support for input markup engines. It caches a pointer to the markup target (class TextMkBase) and provides a simple set of methods that the input engine can call to build up the rich text.For more information, please see the extenral documentation.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description void
setup(TextMarkupBase poBase, TextGfxSource poGfxSource)
abstract void
translate()
Pure virtual: Perform the markup translation.
-
-
-
Method Detail
-
translate
public abstract void translate()
Pure virtual: Perform the markup translation.The derived class implements this to perform the actual translation from markup to rich text. Note that the derived class must be prepopulated with any translation parameters.
-
setup
public void setup(TextMarkupBase poBase, TextGfxSource poGfxSource)
-
-