List of usage examples for java.io File interface-usage
From source file net.sf.ufsc.AbstractFile.java
/** * @author Paul Ferraro * */ public abstract class AbstractFile implements File { protected Log logger = LogFactory.getLog(this.getClass());
From source file com.wavemaker.commons.io.AbstractReadOnlyFile.java
/**
* Abstract base class for read-only {@link File} implementations that are not contained in any {@link #getParent()
* parent} {@link Folder}.
*
* @author Phillip Webb
*/
From source file org.cloudfoundry.tools.io.AbstractReadOnlyFile.java
/**
* Abstract base class for read-only {@link File} implementations that are not contained in any {@link #getParent()
* parent} {@link Folder}.
*
* @author Phillip Webb
*/
From source file org.structr.web.entity.AbstractMinifiedFile.java
/** * Base class for minifiable files in Structr. */ public interface AbstractMinifiedFile extends File { static class Impl {
From source file org.structr.web.entity.Image.java
/** * An image whose binary data will be stored on disk. */ public interface Image extends File { final static String STRUCTR_THUMBNAIL_FOLDER = "._structr_thumbnails/";