/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/ |
ApplicationInfoPage.java | 31 import org.eclipse.core.runtime.IStatus; 441 IStatus status = validatePackage(mValues.packageName); 442 if (status == null || status.getSeverity() != IStatus.ERROR) { 443 IStatus validActivity = validateActivity(); 448 if (status == null || status.getSeverity() != IStatus.ERROR) { 449 IStatus validMinSdk = validateMinSdk(); 455 if (status == null || status.getSeverity() != IStatus.ERROR) { 456 IStatus validSourceFolder = validateSourceFolder(); 464 if (status == null || status.getSeverity() != IStatus.ERROR) { 466 IStatus validTestProject = ProjectNamePage.validateProjectName [all...] |
ProjectNamePage.java | 37 import org.eclipse.core.runtime.IStatus; 432 IStatus status = null; 440 if (status == null || status.getSeverity() != IStatus.ERROR) { 441 IStatus validLocation = validateLocation(); 453 status = new Status(IStatus.ERROR, AdtPlugin.PLUGIN_ID, 462 setPageComplete(status == null || status.getSeverity() != IStatus.ERROR); 465 status.getSeverity() == IStatus.ERROR 473 private IStatus validateLocation() { 487 IStatus locationStatus = workspace.validateProjectLocationURI(handle, uri); 496 return new Status(IStatus.ERROR, AdtPlugin.PLUGIN_ID [all...] |
SampleSelectionPage.java | 24 import org.eclipse.core.runtime.IStatus; 247 IStatus status = null; 249 status = new Status(IStatus.ERROR, AdtPlugin.PLUGIN_ID, 252 status = new Status(IStatus.ERROR, AdtPlugin.PLUGIN_ID, "Choose a sample"); 254 status = new Status(IStatus.ERROR, AdtPlugin.PLUGIN_ID, 261 setPageComplete(status == null || status.getSeverity() != IStatus.ERROR); 264 status.getSeverity() == IStatus.ERROR
|
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/ |
DesignerPlugin.java | 18 import org.eclipse.core.runtime.IStatus; 158 * Logs given {@link IStatus} into Eclipse .log. 160 public static void log(IStatus status) { 165 * Logs {@link IStatus} with given message into Eclipse .log. 168 log(new Status(IStatus.INFO, sPluginId, IStatus.INFO, message, null)); 172 * Logs {@link IStatus} with given exception into Eclipse .log. 175 Status status = new Status(IStatus.ERROR, sPluginId, "", e); 180 * Logs {@link IStatus} with given message and exception into Eclipse .log. 187 * Creates {@link IStatus} for given message and exception [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.osgi/bundles/24/1/.cp/ant_tasks/ |
helpbase-ant.jar | |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/ |
ProjectContentsPage.java | 24 import org.eclipse.core.runtime.IStatus; 304 IStatus status = validateProjectLocation(); 306 setPageComplete(status == null || status.getSeverity() != IStatus.ERROR); 309 status.getSeverity() == IStatus.ERROR 317 static IStatus validateLocationInWorkspace(NewProjectWizardState values) { 326 return new Status(IStatus.ERROR, AdtPlugin.PLUGIN_ID, String.format( 335 private IStatus validateProjectLocation() { 342 return new Status(IStatus.ERROR, AdtPlugin.PLUGIN_ID, 349 return new Status(IStatus.ERROR, AdtPlugin.PLUGIN_ID, 355 return new Status(IStatus.ERROR, AdtPlugin.PLUGIN_ID [all...] |
NewProjectPage.java | 38 import org.eclipse.core.runtime.IStatus; 358 IStatus status = NewTemplatePage.validateCombo(null, mThemeParameter, 494 IStatus nameStatus = workspace.validateName(appName, IResource.PROJECT); 754 IStatus status = mValues.template.validateTemplate(mValues.minSdkLevel, 767 IStatus appStatus = validateAppName(); 773 IStatus projectStatus = validateProjectName(); 779 IStatus packageStatus = validatePackageName(); 785 IStatus locationStatus = ProjectContentsPage.validateLocationInWorkspace(mValues); [all...] |
NewTemplatePage.java | 42 import org.eclipse.core.runtime.IStatus; 602 IStatus status = mValues.getTemplateHandler().validateTemplate(minSdk, buildApi); 606 status = new Status(IStatus.ERROR, AdtPlugin.PLUGIN_ID, 621 IStatus s = new Status(IStatus.ERROR, AdtPlugin.PLUGIN_ID, error); 640 setPageComplete(status == null || status.getSeverity() != IStatus.ERROR); 643 status.getSeverity() == IStatus.ERROR 652 static IStatus validateCombo(IStatus status, Parameter parameter, int minSdk, int buildApi) { 659 static IStatus validateCombo(IStatus status, Parameter parameter, int index [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/ |
Activator.java | 21 import org.eclipse.core.runtime.IStatus; 72 public static IStatus newStatus(Exception e) { 73 return new Status(IStatus.ERROR, PLUGIN_ID, e.getMessage(), e);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/ |
ColumnDialog.java | 20 import org.eclipse.core.runtime.IStatus; 98 IStatus status; 102 status = new Status(IStatus.ERROR, AdtPlugin.PLUGIN_ID, 105 status = new Status(IStatus.OK, AdtPlugin.PLUGIN_ID, null);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/builders/ |
PatternBasedDeltaVisitor.java | 29 import org.eclipse.core.runtime.IStatus; 65 AdtPlugin.log(IStatus.INFO, "%s (%s): Delta for %s", //$NON-NLS-1$ 106 AdtPlugin.log(IStatus.INFO, "%s (%s:%s): %s", //$NON-NLS-1$ 110 AdtPlugin.log(IStatus.INFO, "%s (%s): %s", //$NON-NLS-1$ 124 AdtPlugin.log(IStatus.INFO, "%s (%s:%s): %s", //$NON-NLS-1$ 128 AdtPlugin.log(IStatus.INFO, "%s (%s): %s", //$NON-NLS-1$
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/ |
AndroidClasspathContainerPage.java | 25 import org.eclipse.core.runtime.IStatus; 53 private IStatus mCurrStatus; 143 if (visible && mCurrStatus.matches(IStatus.ERROR)) { 156 protected void updateStatus(IStatus status) { 158 setPageComplete(!status.matches(IStatus.ERROR)); 172 protected void updateStatus(IStatus[] status) {
|
BaseClasspathContainerInitializer.java | 27 import org.eclipse.core.runtime.IStatus; 64 protected IStatus run(IProgressMonitor monitor) { 98 protected IStatus run(IProgressMonitor monitor) {
|
ExportHelper.java | 48 import org.eclipse.core.runtime.IStatus; 113 throw new CoreException(new Status(IStatus.ERROR, AdtPlugin.PLUGIN_ID, 142 throw new CoreException(new Status(IStatus.ERROR, AdtPlugin.PLUGIN_ID, 221 throw new CoreException(new Status(IStatus.ERROR, AdtPlugin.PLUGIN_ID, 301 throw new CoreException(new Status(IStatus.ERROR, AdtPlugin.PLUGIN_ID, 306 throw new CoreException(new Status(IStatus.ERROR, AdtPlugin.PLUGIN_ID, 313 throw new CoreException(new Status(IStatus.ERROR, AdtPlugin.PLUGIN_ID, 320 throw new CoreException(new Status(IStatus.ERROR, AdtPlugin.PLUGIN_ID, 323 throw new CoreException(new Status(IStatus.ERROR, AdtPlugin.PLUGIN_ID, 326 throw new CoreException(new Status(IStatus.ERROR, AdtPlugin.PLUGIN_ID [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/binaryxml/ |
FileStorage.java | 24 import org.eclipse.core.runtime.IStatus; 64 throw new CoreException(new Status(IStatus.ERROR, AdtPlugin.getDefault().getBundle() 65 .getSymbolicName(), IStatus.ERROR, mFile.getAbsolutePath(), e));
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/tests/ |
SdkLoadingTestCase.java | 26 import org.eclipse.core.runtime.IStatus; 110 IStatus status = new AndroidTargetParser(target).run(new NullProgressMonitor()); 111 if (status.getCode() != IStatus.OK) {
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/ |
DexWrapper.java | 23 import org.eclipse.core.runtime.IStatus; 68 * @return an IStatus indicating the result of the load. 70 public synchronized IStatus loadDex(String osFilepath) { 74 return new Status(IStatus.ERROR, AdtPlugin.PLUGIN_ID, String.format( 211 private static IStatus createErrorStatus(String message, Throwable e) { 215 return new Status(IStatus.ERROR, AdtPlugin.PLUGIN_ID, message, e);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/ui/ |
ReferenceChooserDialog.java | 28 import org.eclipse.core.runtime.IStatus; 246 IStatus status; 249 status = new Status(IStatus.OK, AdtPlugin.PLUGIN_ID, 250 IStatus.OK, "", //$NON-NLS-1$ 253 status = new Status(IStatus.ERROR, AdtPlugin.PLUGIN_ID, 254 IStatus.ERROR, "You must select a Resource Item", 258 status = new Status(IStatus.ERROR, AdtPlugin.PLUGIN_ID, 259 IStatus.ERROR, "", //$NON-NLS-1$
|
/sdk/eclipse/plugins/com.android.ide.eclipse.monitor/src/com/android/ide/eclipse/monitor/ |
MonitorStartup.java | 23 import org.eclipse.core.runtime.IStatus; 39 protected IStatus run(IProgressMonitor monitor) {
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.osgi/bundles/67/1/.cp/ant_tasks/ |
director-ant.jar | |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
CreateNewConfigJob.java | 33 import org.eclipse.core.runtime.IStatus; 59 protected IStatus run(IProgressMonitor monitor) { 73 return new Status(IStatus.ERROR, AdtPlugin.PLUGIN_ID, message); 119 return new Status(IStatus.ERROR, AdtPlugin.PLUGIN_ID,
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
org.eclipse.equinox.p2.operations_2.0.0.v20100510.jar | |
org.eclipse.equinox.p2.touchpoint.natives_1.0.200.v20100503a.jar | |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/actions/ |
FixProjectAction.java | 27 import org.eclipse.core.runtime.IStatus; 100 protected IStatus run(IProgressMonitor monitor) {
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/tree/ |
NewItemSelectionDialog.java | 26 import org.eclipse.core.runtime.IStatus; 112 public IStatus validate(Object[] selection) { 114 return new Status(IStatus.OK, // severity 116 IStatus.OK, // code 120 return new Status(IStatus.OK, // severity 122 IStatus.OK, // code 126 return new Status(IStatus.ERROR, // severity 128 IStatus.ERROR, // code
|