|
||||||||||||
PREV PACKAGE NEXT PACKAGE | FRAMES NO FRAMES |
See:
Description
Interface Summary | |
---|---|
CloseOperation | Defines the operation to close a document in RichDocumentView . |
LoadOperation | Defines the operation to load a document into the view. |
NewOperation | Defines the operation to create a new document in a rich document view. |
Operation | Describes a rich document operation that is started by
RichDocumentView . |
OperationListener | This is the class that is notified when an operation is invoked in a
RichDocumentView . |
SaveAsOperation | Defines the operation to save the document in the rich document view as a new file. |
SaveOperation | Defines the operation to save the document in the rich document view. |
Class Summary | |
---|---|
OperationFactory | The factory class for creating rich document operations. |
Provides the default operations supported by the RichDocumentView. An OperationListener is also defined to monitor the running of operations in the rich document view.
The following example demonstrates how to create a new write document in a rich document view.
RichDocumentView view = ...;
NewOperation operation = OperationFactory.createNewOperation( RichDocumentType.DOCUMENT_TYPE );
view.executeOperation( operation );
|
||||||||||||
PREV PACKAGE NEXT PACKAGE | FRAMES NO FRAMES |