View | Details | Raw Unified | Return to bug 241598 | Differences between
and this patch

Collapse All | Expand All

(-)model/org/eclipse/jdt/internal/core/JavaProject.java (-1 / +1 lines)
Lines 106-112 Link Here
106
	/**
106
	/**
107
	 * Name of file containing project classpath
107
	 * Name of file containing project classpath
108
	 */
108
	 */
109
	public static final String CLASSPATH_FILENAME = ".classpath";  //$NON-NLS-1$
109
	public static final String CLASSPATH_FILENAME = IJavaProject.CLASSPATH_FILE_PATH;
110
110
111
	/**
111
	/**
112
	 * Value of the project's raw classpath if the .classpath file contains invalid entries.
112
	 * Value of the project's raw classpath if the .classpath file contains invalid entries.
(-)model/org/eclipse/jdt/core/IJavaProject.java (+14 lines)
Lines 62-67 Link Here
62
 */
62
 */
63
public interface IJavaProject extends IParent, IJavaElement, IOpenable {
63
public interface IJavaProject extends IParent, IJavaElement, IOpenable {
64
64
65
    /**
66
     * Path to the file containing project classpath.
67
     * 
68
     * @since 3.5
69
     */
70
    static final String CLASSPATH_FILE_PATH = ".classpath"; //$NON-NLS-1$
71
    
72
    /**
73
     * Path to the file containing java project preferences.
74
     * 
75
     * @since 3.5
76
     */
77
    static final String JAVA_CORE_PREFS_FILE_PATH = ".settings/" + JavaCore.PLUGIN_ID + ".prefs"; //$NON-NLS-1$  //$NON-NLS-2$
78
    
65
	/**
79
	/**
66
	 * Decodes the classpath entry that has been encoded in the given string
80
	 * Decodes the classpath entry that has been encoded in the given string
67
	 * in the context of this project.
81
	 * in the context of this project.

Return to bug 241598