Package ro.sync.exml.plugin.document
Class DocumentPluginResultImpl
- java.lang.Object
-
- ro.sync.exml.plugin.document.DocumentPluginResultImpl
-
- All Implemented Interfaces:
DocumentPluginResult
@API(type=EXTENDABLE, src=PUBLIC) public class DocumentPluginResultImpl extends java.lang.Object implements DocumentPluginResult
-
-
Field Summary
Fields Modifier and Type Field Description protected javax.swing.text.Document
document
The processed document.
-
Constructor Summary
Constructors Constructor Description DocumentPluginResultImpl()
Creates an PluginResult with no document.DocumentPluginResultImpl(javax.swing.text.Document document)
Constructor for the PluginResult.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description javax.swing.text.Document
getProcessedDocument()
Get the current document.void
setProcessedDocument(javax.swing.text.Document document)
Sets the current document.
-
-
-
Method Detail
-
setProcessedDocument
public void setProcessedDocument(javax.swing.text.Document document)
Sets the current document.- Parameters:
document
- The current document.
-
getProcessedDocument
public javax.swing.text.Document getProcessedDocument()
Get the current document.- Specified by:
getProcessedDocument
in interfaceDocumentPluginResult
- Returns:
- The current document.
-
-