Ignore:
Timestamp:
05/10/18 16:04:51 (6 years ago)
Author:
davidb
Message:

Reworking of the code-base to separate logic from graphics. This version of Expeditee now supports a JFX graphics as an alternative to SWING

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/expeditee/importer/FilePathImporter.java

    r919 r1102  
    1919package org.expeditee.importer;
    2020
    21 import java.awt.Point;
    2221import java.io.File;
    2322import java.io.IOException;
    2423
     24import org.expeditee.core.Point;
     25import org.expeditee.gio.DragAndDropManager;
    2526import org.expeditee.items.Item;
    2627
     
    3637        public Item importFile(File f, Point location) throws IOException {
    3738                if (location != null && f != null) {
    38                         return FrameDNDTransferHandler.importString(f.getAbsolutePath(), location);                     
     39                        return DragAndDropManager.importString(f.getAbsolutePath(), location);                 
    3940                }
    4041
Note: See TracChangeset for help on using the changeset viewer.