com.mindoo.remote.api.clipboard
Interface IRemoteClipboardAccess


public interface IRemoteClipboardAccess

Tool class to read and write values to/from the system clipboard


Method Summary
 void setFileContent(java.lang.String filePath)
          Method to copy a file into the system clipboard
 void setHTMLContent(java.lang.String html)
          Method to copy an HTML string into the system clipboard
 void setImageContent(java.lang.String imagePath)
          Method to copy an image file into the system clipboard
 void setTextContent(java.lang.String txt)
          Method to copy a string of plain text into the system clipboard
 

Method Detail

setTextContent

void setTextContent(java.lang.String txt)
                    throws RemoteEclipseAPIException
Method to copy a string of plain text into the system clipboard

Parameters:
txt - text
Throws:
RemoteEclipseAPIException

setHTMLContent

void setHTMLContent(java.lang.String html)
                    throws RemoteEclipseAPIException
Method to copy an HTML string into the system clipboard

Parameters:
html - HTML
Throws:
RemoteEclipseAPIException

setFileContent

void setFileContent(java.lang.String filePath)
                    throws RemoteEclipseAPIException
Method to copy a file into the system clipboard

Parameters:
filePath - path to file
Throws:
RemoteEclipseAPIException

setImageContent

void setImageContent(java.lang.String imagePath)
                     throws RemoteEclipseAPIException
Method to copy an image file into the system clipboard

Parameters:
imagePath - path to image file
Throws:
RemoteEclipseAPIException