Home | History | Annotate | Download | only in project

Lines Matching defs:manifestFile

49      * @param manifestFile the {@link IFile} representing the manifest file.
61 IAbstractFile manifestFile,
65 if (manifestFile != null) {
67 if (manifestFile instanceof IFileWrapper) {
68 eclipseFile = ((IFileWrapper)manifestFile).getIFile();
75 return AndroidManifestParser.parse(manifestFile, gatherData, errorHandler);
90 * @param manifestFile the {@link IFile} representing the manifest file.
98 IAbstractFile manifestFile,
102 return parseUnchecked(manifestFile, gatherData, errorListener);
106 manifestFile.getOsLocation(),
111 manifestFile.getOsLocation(),
118 manifestFile.getOsLocation(),
124 manifestFile.getOsLocation(),
153 IFile manifestFile = ProjectHelper.getManifest(javaProject.getProject());
154 if (manifestFile != null) {
155 return parse(new IFileWrapper(manifestFile), gatherData, errorListener);
163 * @param manifestFile The manifest file to parse.
167 public static void parseForError(IFile manifestFile, XmlErrorListener errorListener) {
168 parse(new IFileWrapper(manifestFile), false, errorListener);
173 * @param manifestFile The manifest file to parse.
176 public static ManifestData parseForData(IFile manifestFile) {
177 return parse(new IFileWrapper(manifestFile), true, null);
186 IFile manifestFile = ProjectHelper.getManifest(project);
187 if (manifestFile != null) {
188 return parse(new IFileWrapper(manifestFile), true, null);