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

Collapse All | Expand All

(-)model/org/eclipse/jdt/core/IJavaProject.java (-1 / +18 lines)
Lines 1-5 Link Here
1
/*******************************************************************************
1
/*******************************************************************************
2
 * Copyright (c) 2000, 2010 IBM Corporation and others.
2
 * Copyright (c) 2000, 2011 IBM Corporation and others.
3
 * All rights reserved. This program and the accompanying materials
3
 * All rights reserved. This program and the accompanying materials
4
 * are made available under the terms of the Eclipse Public License v1.0
4
 * are made available under the terms of the Eclipse Public License v1.0
5
 * which accompanies this distribution, and is available at
5
 * which accompanies this distribution, and is available at
Lines 63-68 Link Here
63
public interface IJavaProject extends IParent, IJavaElement, IOpenable {
63
public interface IJavaProject extends IParent, IJavaElement, IOpenable {
64
64
65
	/**
65
	/**
66
	 * Path of the file containing the project's classpath relative to the project's root.
67
	 * 
68
	 * <p>The value of the path is unspecified. This path should be used to retrieve the corresponding
69
	 * file using {@link IProject#findMember(IPath)}.</p>
70
	 * <p>The format of this file is unspecified and it is not meant to be modified.
71
	 * Its contents is modified by using the <code>IJavaProject#setRawClasspath(..)</code> methods.</p>
72
	 * 
73
	 * @see #setRawClasspath(IClasspathEntry[], IProgressMonitor)
74
	 * @see #setRawClasspath(IClasspathEntry[], boolean, IProgressMonitor)
75
	 * @see #setRawClasspath(IClasspathEntry[], IPath, IProgressMonitor)
76
	 * @see #setRawClasspath(IClasspathEntry[], IClasspathEntry[], IPath, IProgressMonitor)
77
	 * @see #setRawClasspath(IClasspathEntry[], IPath, boolean, IProgressMonitor)
78
	 * @since 3.7
79
	 */
80
	String CLASSPATH_FILE_NAME = ".classpath"; //$NON-NLS-1$
81
82
	/**
66
	 * Decodes the classpath entry that has been encoded in the given string
83
	 * Decodes the classpath entry that has been encoded in the given string
67
	 * in the context of this project.
84
	 * in the context of this project.
68
	 * Returns null if the encoded entry is malformed.
85
	 * Returns null if the encoded entry is malformed.
(-)model/org/eclipse/jdt/internal/core/JavaProject.java (-1 / +1 lines)
Lines 110-116 Link Here
110
	/**
110
	/**
111
	 * Name of file containing project classpath
111
	 * Name of file containing project classpath
112
	 */
112
	 */
113
	public static final String CLASSPATH_FILENAME = ".classpath";  //$NON-NLS-1$
113
	public static final String CLASSPATH_FILENAME = IJavaProject.CLASSPATH_FILE_NAME;
114
114
115
	/**
115
	/**
116
	 * Value of the project's raw classpath if the .classpath file contains invalid entries.
116
	 * Value of the project's raw classpath if the .classpath file contains invalid entries.

Return to bug 241598