improved PHP parser
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / core / IJavaModelStatus.java
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
7  * 
8  * Contributors:
9  *     IBM Corporation - initial API and implementation
10  *******************************************************************************/
11 package net.sourceforge.phpdt.core;
12
13 import org.eclipse.core.runtime.IPath;
14 import org.eclipse.core.runtime.IStatus;
15
16 /**
17  * Represents the outcome of an Java model operation. Status objects are
18  * used inside <code>JavaModelException</code> objects to indicate what went
19  * wrong.
20  * <p>
21  * Java model status object are distinguished by their plug-in id:
22  * <code>getPlugin</code> returns <code>"net.sourceforge.phpdt.core"</code>.
23  * <code>getCode</code> returns one of the status codes declared in
24  * <code>IJavaModelStatusConstants</code>.
25  * </p>
26  * <p>
27  * A Java model status may also carry additional information (that is, in 
28  * addition to the information defined in <code>IStatus</code>):
29  * <ul>
30  *   <li>elements - optional handles to Java elements associated with the failure</li>
31  *   <li>string - optional string associated with the failure</li>
32  * </ul>
33  * <p>
34  * This interface is not intended to be implemented by clients.
35  * </p>
36  *
37  * @see org.eclipse.core.runtime.IStatus
38  * @see IJavaModelStatusConstants
39  */
40 public interface IJavaModelStatus extends IStatus {
41 /**
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.
45  *
46  * @return the list of Java element culprits
47  * @see IJavaModelStatusConstants
48  */
49 public IJavaElement[] getElements();
50
51 /**
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>.
56  *
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
62  */
63 IPath getPath();
64 /**
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.
68  *
69  * @return the string culprit, or <code>null</code> if none
70  * @see IJavaModelStatusConstants
71  * @deprecated Use IStatus#getMessage instead
72  */
73 String getString();
74 /**
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>.
78  *
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
82  */
83 boolean isDoesNotExist();
84 }