1 12 package org.eclipse.core.filesystem; 13 14 import org.eclipse.core.runtime.IProgressMonitor; 15 16 31 public interface IFileInfo extends Comparable , Cloneable { 32 33 39 public abstract boolean exists(); 40 41 52 public abstract boolean getAttribute(int attribute); 53 54 67 public abstract String getStringAttribute(int attribute); 68 69 79 public abstract long getLastModified(); 80 81 87 public abstract long getLength(); 88 89 94 public abstract String getName(); 95 96 103 public abstract boolean isDirectory(); 104 105 119 public abstract void setAttribute(int attribute, boolean value); 120 121 131 public abstract void setLastModified(long time); 132 } | Popular Tags |