Package frost.fileTransfer.upload

Examples of frost.fileTransfer.upload.FrostUploadItem


                continue;
            }
            final FrostSharedFileItem suf = (FrostSharedFileItem)obj;
            if( suf.getOwner().equals(li.getUniqueName()) ) {
              // FIXME: why do we have a FrostSharedFileItem and try to remove a FrostUploadItem?
              FrostUploadItem frostSharedFileItem = (FrostUploadItem) (Object) suf;
                getUploadManager().getModel().removeItem(frostSharedFileItem);
            }
        }

        // remove from sharedfiles table
View Full Code Here


      final File file = uploadFileItems.get(0);
      Core.frostSettings.setValue(SettingsClass.DIR_LAST_USED, file.getParent());
    }

    for(final File file : uploadFileItems ) {
      frostUploadItemList.add( new FrostUploadItem(file));
    }

    return frostUploadItemList;
  }
View Full Code Here

TOP

Related Classes of frost.fileTransfer.upload.FrostUploadItem

Copyright © 2018 www.massapicom. 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.