1 11 package org.eclipse.jdt.core; 12 13 import org.eclipse.core.resources.IStorage; 14 import org.eclipse.core.runtime.IPath; 15 16 28 public interface IJarEntryResource extends IStorage { 29 30 36 IJarEntryResource[] getChildren(); 37 38 49 IPath getFullPath(); 50 51 57 Object getParent(); 58 59 64 IPackageFragmentRoot getPackageFragmentRoot(); 65 66 72 boolean isFile(); 73 74 } 75 | Popular Tags |