1 /*******************************************************************************
2 * Copyright (c) 2000, 2003 IBM Corporation and others.
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the Common Public License v1.0
5 * which accompanies this distribution, and is available at
6 * http://www.eclipse.org/legal/cpl-v10.html
9 * IBM Corporation - initial API and implementation
10 *******************************************************************************/
11 package net.sourceforge.phpdt.core;
13 import org.eclipse.core.runtime.IPath;
14 import org.eclipse.core.runtime.IStatus;
17 * Represents the outcome of an Java model operation. Status objects are
18 * used inside <code>JavaModelException</code> objects to indicate what went
21 * Java model status object are distinguished by their plug-in id:
22 * <code>getPlugin</code> returns <code>"org.eclipse.jdt.core"</code>.
23 * <code>getCode</code> returns one of the status codes declared in
24 * <code>IJavaModelStatusConstants</code>.
27 * A Java model status may also carry additional information (that is, in
28 * addition to the information defined in <code>IStatus</code>):
30 * <li>elements - optional handles to Java elements associated with the failure</li>
31 * <li>string - optional string associated with the failure</li>
34 * This interface is not intended to be implemented by clients.
37 * @see org.eclipse.core.runtime.IStatus
38 * @see IJavaModelStatusConstants
40 public interface IJavaModelStatus extends IStatus {
42 * Returns any Java elements associated with the failure (see specification
43 * of the status code), or an empty array if no elements are related to this
44 * particular status code.
46 * @return the list of Java element culprits
47 * @see IJavaModelStatusConstants
49 public IJavaElement[] getElements();
52 * Returns the path associated with the failure (see specification
53 * of the status code), or <code>null</code> if the failure is not
54 * one of <code>DEVICE_PATH</code>, <code>INVALID_PATH</code>,
55 * <code>PATH_OUTSIDE_PROJECT</code>, or <code>RELATIVE_PATH</code>.
57 * @return the path that caused the failure, or <code>null</code> if none
58 * @see IJavaModelStatusConstants#DEVICE_PATH
59 * @see IJavaModelStatusConstants#INVALID_PATH
60 * @see IJavaModelStatusConstants#PATH_OUTSIDE_PROJECT
61 * @see IJavaModelStatusConstants#RELATIVE_PATH
65 * Returns the string associated with the failure (see specification
66 * of the status code), or <code>null</code> if no string is related to this
67 * particular status code.
69 * @return the string culprit, or <code>null</code> if none
70 * @see IJavaModelStatusConstants
71 * @deprecated Use IStatus#getMessage instead
75 * Returns whether this status indicates that a Java model element does not exist.
76 * This convenience method is equivalent to
77 * <code>getCode() == IJavaModelStatusConstants.ELEMENT_DOES_NOT_EXIST</code>.
79 * @return <code>true</code> if the status code indicates that a Java model
80 * element does not exist
81 * @see IJavaModelStatusConstants#ELEMENT_DOES_NOT_EXIST
83 boolean isDoesNotExist();