Lines Matching refs:bundleLocation

88 	public boolean addBundle(Dictionary<String, String> enhancedManifest, File bundleLocation) {  in addBundle()  argument
92 …descriptor = factory.createBundleDescription(state, enhancedManifest, bundleLocation.getAbsolutePa… in addBundle()
208 public boolean addBundle(File bundleLocation) { in addBundle() argument
210 manifest = loadManifest(bundleLocation); in addBundle()
212 return addFlexibleRoot(bundleLocation); in addBundle()
215 hasQualifier(bundleLocation, manifest); in addBundle()
219 return addBundle(manifest, bundleLocation); in addBundle()
222 private boolean addFlexibleRoot(File bundleLocation) { in addFlexibleRoot() argument
223 if (!new File(bundleLocation, PDE_CORE_PREFS).exists()) in addFlexibleRoot()
227 …Properties properties = AbstractScriptGenerator.readProperties(bundleLocation.getAbsolutePath(), P… in addFlexibleRoot()
230 return addBundle(new File(bundleLocation, root)); in addFlexibleRoot()
261 …private void hasQualifier(File bundleLocation, Dictionary<String, String> manifest) throws BundleE… in hasQualifier() argument
265 manifest.put(PROPERTY_QUALIFIER, getQualifierPropery(bundleLocation.getAbsolutePath())); in hasQualifier()
270 private String getQualifierPropery(String bundleLocation) { in getQualifierPropery() argument
273 …qualifierInfo = AbstractScriptGenerator.readProperties(bundleLocation, IPDEBuildConstants.PROPERTI… in getQualifierPropery()
283 private Dictionary<String, String> basicLoadManifest(File bundleLocation) { in basicLoadManifest() argument
287 …if ("jar".equalsIgnoreCase(new Path(bundleLocation.getName()).getFileExtension()) && bundleLocatio… in basicLoadManifest()
288 jarFile = new ZipFile(bundleLocation, ZipFile.OPEN_READ); in basicLoadManifest()
294 …manifestStream = new BufferedInputStream(new FileInputStream(new File(bundleLocation, JarFile.MANI… in basicLoadManifest()
327 …private boolean enforceSymbolicName(File bundleLocation, Dictionary<String, String> initialManifes… in enforceSymbolicName() argument
346 private Dictionary<String, String> loadManifest(File bundleLocation) { in loadManifest() argument
347 Dictionary<String, String> manifest = basicLoadManifest(bundleLocation); in loadManifest()
352 if (!enforceSymbolicName(bundleLocation, manifest)) in loadManifest()