1 11 package org.eclipse.core.resources; 12 13 import java.io.InputStream ; 14 import org.eclipse.core.runtime.*; 15 16 49 public interface IFileState extends IEncodedStorage, IAdaptable { 50 56 public boolean exists(); 57 58 71 public InputStream getContents() throws CoreException; 72 73 82 public IPath getFullPath(); 83 84 95 public long getModificationTime(); 96 97 107 public String getName(); 108 109 117 public boolean isReadOnly(); 118 } 119 | Popular Tags |