Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStephan Herrmann2011-10-25 16:30:31 +0000
committerStephan Herrmann2011-10-25 16:30:31 +0000
commit6dcbb38068eee59acb310076b78bc9a8183f88b8 (patch)
tree5970dc8f2ddd2fddbec81152e18faccb2710d493 /org.eclipse.jdt.core/model/org/eclipse/jdt/core/JavaConventions.java
parent608b50502644f795c100c2571772d0519a266d4a (diff)
downloadorg.eclipse.objectteams-6dcbb38068eee59acb310076b78bc9a8183f88b8.tar.gz
org.eclipse.objectteams-6dcbb38068eee59acb310076b78bc9a8183f88b8.tar.xz
org.eclipse.objectteams-6dcbb38068eee59acb310076b78bc9a8183f88b8.zip
update sources to v_C18, build config to v_C17 (no build containing C18 is available at this point)
Diffstat (limited to 'org.eclipse.jdt.core/model/org/eclipse/jdt/core/JavaConventions.java')
-rw-r--r--org.eclipse.jdt.core/model/org/eclipse/jdt/core/JavaConventions.java12
1 files changed, 7 insertions, 5 deletions
diff --git a/org.eclipse.jdt.core/model/org/eclipse/jdt/core/JavaConventions.java b/org.eclipse.jdt.core/model/org/eclipse/jdt/core/JavaConventions.java
index a051e9122..4575100cf 100644
--- a/org.eclipse.jdt.core/model/org/eclipse/jdt/core/JavaConventions.java
+++ b/org.eclipse.jdt.core/model/org/eclipse/jdt/core/JavaConventions.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2000, 2010 IBM Corporation and others.
+ * Copyright (c) 2000, 2011 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -618,11 +618,13 @@ public final class JavaConventions {
* <li> The project output location path cannot be null, must be absolute and located inside the project.
* <li> Specific output locations (specified on source entries) can be null, if not they must be located inside the project,
* <li> A project entry cannot refer to itself directly (that is, a project cannot prerequisite itself).
- * <li> Classpath entries or output locations cannot coincidate or be nested in each other, except for the following scenarii listed below:
- * <ul><li> A source folder can coincidate with its own output location, in which case this output can then contain library archives.
- * However, a specific output location cannot coincidate with any library or a distinct source folder than the one referring to it. </li>
+ * <li> Classpath entries or output locations cannot coincide or be nested in each other, except for the following scenarios listed below:
+ * <ul><li> A source folder can coincide with its own output location, in which case this output can then contain library archives.
+ * However, a specific output location cannot coincide with any library or a distinct source folder than the one referring to it.<br>
+ * Note: Since 3.8, this behavior can be overridden by configuring {@link JavaCore#CORE_OUTPUT_LOCATION_OVERLAPPING_ANOTHER_SOURCE}
+ * </li>
* <li> A source/library folder can be nested in any source folder as long as the nested folder is excluded from the enclosing one. </li>
- * <li> An output location can be nested in a source folder, if the source folder coincidates with the project itself, or if the output
+ * <li> An output location can be nested in a source folder, if the source folder coincides with the project itself, or if the output
* location is excluded from the source folder.
* </ul>
* </ul>

Back to the top