1 11 package org.eclipse.jdt.core; 12 13 import org.eclipse.core.runtime.IPath; 14 15 38 39 public interface IClasspathContainer { 40 41 44 int K_APPLICATION = 1; 45 46 49 int K_SYSTEM = 2; 50 51 54 int K_DEFAULT_SYSTEM = 3; 55 56 96 IClasspathEntry[] getClasspathEntries(); 97 98 103 String getDescription(); 104 105 116 int getKind(); 117 118 129 IPath getPath(); 130 } 131 132 | Popular Tags |