Uses of Class
wt.clients.dndMicroApplet.DnDMicroApplet

Packages that use DnDMicroApplet
wt.clients.dndMicroApplet This package implements an applet whose intent is to supply targeted drag-and-drop functionality for use within HTML pages whose content is primarily HTML (in terms of screen real-estate and user focus), not Java.  The applet class is wt.clients.dndMicroApplet.DnDMicroApplet and is deployed as a signed JAR, <Windchill codebase>/wt/clients/dndMicroApplet/DnDApplet.jar
 

Uses of DnDMicroApplet in wt.clients.dndMicroApplet
 

Fields in wt.clients.dndMicroApplet declared as DnDMicroApplet
private  DnDMicroApplet ShowDocOnDblClick.applet
           
private  DnDMicroApplet DropListener.applet
          The controlling/calling applet; used only for showDocument() and to allow drag events to change the applet appearance.
private  DnDMicroApplet DragListener.applet
          Source/calling applet (remembered to allow use of showStatus() and getLocale())
private  DnDMicroApplet CallJSFunctionOnDblClick.applet
           
 

Methods in wt.clients.dndMicroApplet with parameters of type DnDMicroApplet
(package private) static Component DelegateJComponent.getAndAddInstance(DnDMicroApplet dndApplet, String tooltipText)
           
 

Constructors in wt.clients.dndMicroApplet with parameters of type DnDMicroApplet
ShowDocOnDblClick(DnDMicroApplet applet, URL url)
           
DropListener(DnDMicroApplet applet, String fileDropJSFunc, String jsFileDelim, URL fileDropURL, boolean acceptDirDrops, String stringDropJSFunc, URL stringDropURL, URL dropPostURL, URL returnURL, String idString)
          Construction of the drop listener takes a reference to the applet (only to allow use of showDocument(), change applet display state upon drag over, and to call JavaScript functions if so specified), the JavaScript function to send file drops to, a string for this function to use to delimit files in a file list string, the URL to send file drops to, whether to include directories in file drops, the JavaScript function to send string/text drops to, the URL to send string/text data to, the URL to POST data to when the data is too large for a GET, the return URL, and the id string for the applet (to pass to JavaScript functions).
DragListener(DnDMicroApplet applet, Image dragImage, URL urlDragSource, String dragFileName, String stringDragSource, boolean downloadOnDrag, String hasStringDataFunc, String getStringDataFunc, String idString)
          Takes an applet (solely to allow use of showStatus() during drags and as a source of Locale and to use the DnDMicroApplet.callJavaScriptFunction() utility method), a URL from which file list drag source data will be derived, a String to serve as string/text drag source data, a flag to indicate whether file list data should hyperlink to the URL itself or the downloaded contents thereof, the name of a JavaScript function to dynamically determine if there is string drag data, the name of a JavaScript function to dynamically obtain string drag data, and a string to identify this applet to JavaScript (for use with the JavaScript function).
CallJSFunctionOnDblClick(DnDMicroApplet applet, String functionName, Object[] args)