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

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

The newest version!
package io.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