All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.sitoolkit.wt.gui.infra.fx.FileWrapper Maven / Gradle / Ivy

The newest version!
package org.sitoolkit.wt.gui.infra.fx;

import java.io.File;

public class FileWrapper {

    private File file;

    public FileWrapper(String file) {
        this(new File(file));
    }

    public FileWrapper(File file) {
        this.file = file;
    }

    public File getFile() {
        return file;
    }

    @Override
    public String toString() {
        return file.getName();
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy