1 11 package org.eclipse.core.runtime; 12 13 import org.eclipse.osgi.util.ManifestElement; 14 import org.osgi.framework.Constants; 15 16 58 public interface ILibrary { 59 64 public static final String CODE = "code"; 66 71 public static final String RESOURCE = "resource"; 73 86 public String [] getContentFilters(); 87 88 102 public IPath getPath(); 103 104 113 public String getType(); 114 115 127 public boolean isExported(); 128 129 138 public boolean isFullyExported(); 139 140 149 public String [] getPackagePrefixes(); 150 } 151 | Popular Tags |