Show
Ignore:
Timestamp:
07/01/08 04:15:59 (6 months ago)
Author:
Frank Benoit <benoit@tionex.de>
branch:
default
Message:

Updater SWT 3.4M7 to 3.4

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • dwt/dnd/FileTransfer.d

    r212 r246  
    11/******************************************************************************* 
    2  * Copyright (c) 2000, 2006 IBM Corporation and others. 
     2 * Copyright (c) 2000, 2008 IBM Corporation and others. 
    33 * All rights reserved. This program and the accompanying materials 
    44 * are made available under the terms of the Eclipse Public License v1.0 
     
    3131 * Each <code>String</code> in the array contains the absolute path for a single 
    3232 * file or directory. 
    33  * See <code>Transfer</code> for additional information. 
    3433 * 
    3534 * <p>An example of a java <code>String[]</code> containing a list of files is shown 
     
    4342 *     fileData[1] = file2.getAbsolutePath(); 
    4443 * </code></pre> 
     44 * 
     45 * @see Transfer 
    4546 */ 
    4647public class FileTransfer : ByteArrayTransfer { 
     
    7374 * represented by a java <code>String[]</code> to a platform specific representation. 
    7475 * Each <code>String</code> in the array contains the absolute path for a single 
    75  * file or directory.  For additional information see 
    76  * <code>Transfer#javaToNative</code>. 
    77  * 
    78  * @param object a java <code>String[]</code> containing the file names to be 
    79  * converted 
    80  * @param transferData an empty <code>TransferData</code> object; this 
    81  * object will be filled in on return with the platform specific format of the dat
     76 * file or directory. 
     77 *  
     78 * @param object a java <code>String[]</code> containing the file names to be converted 
     79 * @param transferData an empty <code>TransferData</code> object that will 
     80 *      be filled in on return with the platform specific format of the data 
     81 *  
     82 * @see Transfer#nativeToJav
    8283 */ 
    8384public void javaToNative(Object object, TransferData transferData) { 
     
    117118 * representation of a list of file names to a java <code>String[]</code>. 
    118119 * Each String in the array contains the absolute path for a single file or directory. 
    119  * For additional information see <code>Transfer#nativeToJava</code>. 
    120120 * 
    121  * @param transferData the platform specific representation of the data to be 
    122  * been converted 
    123  * @return a java <code>String[]</code> containing a list of file names if the 
    124  * conversion was successful; otherwise null 
     121 * @param transferData the platform specific representation of the data to be converted 
     122 * @return a java <code>String[]</code> containing a list of file names if the conversion 
     123 *      was successful; otherwise null 
     124 *  
     125 * @see Transfer#javaToNative 
    125126 */ 
    126127public Object nativeToJava(TransferData transferData) {