ConForM.CoopnTools.CoKer.TextVisual
Interface TextualVisualEditor

All Known Implementing Classes:
TextualVisual

public interface TextualVisualEditor

Textual Visual Editor. Such an editor is able to perform editions of a Textual visual.


Method Summary
 void back()
          This method is to move back if possible
 boolean canBack()
          This method if it is possible to move back
 boolean canForward()
          This method if it is possible to move forward
 void copy()
          This method is to copy the selected contents to clipboard
 void forward()
          This method is to move forward if possible
 void print()
          This method is to show the print dialog, and to print the frame in focus
 void print(java.awt.print.PrinterJob printer)
          This method is to print the frame in focus
 void quit()
          This method quits the TextualVisual
 void selectAll()
          This method is to select all the contents of the frame in focus
 java.lang.String title()
          Get the title of the displayed document.
 

Method Detail

title

public java.lang.String title()
Get the title of the displayed document.

canBack

public boolean canBack()
This method if it is possible to move back

canForward

public boolean canForward()
This method if it is possible to move forward

back

public void back()
This method is to move back if possible

forward

public void forward()
This method is to move forward if possible

quit

public void quit()
This method quits the TextualVisual

print

public void print()
This method is to show the print dialog, and to print the frame in focus

print

public void print(java.awt.print.PrinterJob printer)
This method is to print the frame in focus

selectAll

public void selectAll()
This method is to select all the contents of the frame in focus

copy

public void copy()
This method is to copy the selected contents to clipboard