Examples of XCDEDocClient


Examples of ca.uwaterloo.fydp.xcde.XCDEDocClient

   * @return An XCDEDocClient for the file.
   */
  public XCDEDocClient getFileClient(String file)
  {   
    // See if we have the doc client already opened
    XCDEDocClient client = (XCDEDocClient)dirClient.getOpenChild(file);
   
    // If not, open one
    if(client == null)
    {
      return dirClient.connectToDoc(file);
View Full Code Here

Examples of ca.uwaterloo.fydp.xcde.XCDEDocClient

  private Hashtable docDownloadListeners = new Hashtable();
 
  public void downloadFileContents(String filename, XCDEDocDownloadListener listener)
  {     
    // Get the file client
    XCDEDocClient client = getFileClient(filename);
    
    // Now prepare to download its contents
    docDownloadListeners.put(client, listener);   
    client.setCallback(this);
    client.open();
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.