1 19 package org.netbeans.modules.javacore.scanning; 20 21 import java.io.IOException ; 22 import java.io.InputStream ; 23 24 interface FileInfo { 25 static final FileInfo[] EMPTY_ARR=new FileInfo[0]; 26 String getName(); 27 String getCanonicalName(); 28 String getPath(); 29 InputStream getInputStream() throws IOException ; 30 long lastModified(); 31 boolean isDirectory(); 32 FileInfo[] listFiles(); 33 } | Popular Tags |