### Eclipse Workspace Patch 1.0 #P org.eclipse.core.resources Index: plugin.xml =================================================================== RCS file: /cvsroot/eclipse/org.eclipse.core.resources/plugin.xml,v retrieving revision 1.88 diff -u -r1.88 plugin.xml --- plugin.xml 8 Mar 2010 22:53:15 -0000 1.88 +++ plugin.xml 4 Nov 2010 18:43:14 -0000 @@ -134,6 +134,11 @@ name="eclipse.refreshLocal" class="org.eclipse.core.resources.ant.RefreshLocalTask"> + + true then derived flag will be set for the given resource and all its children. If false then it will be set only for the given resource. + * + * @param value the recurse value + */ + public void setRecurse(String value) { + recurse = Boolean.parseBoolean(value); + } + + /** + * Sets the resource path for which {@link IResource#setDerived(boolean, IProgressMonitor)} will be called. + * + * @param value the resource path + */ + public void setResourcePath(String value) { + resourcePath = new Path(value); + } +} Index: src_ant/org/eclipse/core/resources/ant/messages.properties =================================================================== RCS file: /cvsroot/eclipse/org.eclipse.core.resources/src_ant/org/eclipse/core/resources/ant/messages.properties,v retrieving revision 1.11 diff -u -r1.11 messages.properties --- src_ant/org/eclipse/core/resources/ant/messages.properties 8 Jun 2005 20:50:25 -0000 1.11 +++ src_ant/org/eclipse/core/resources/ant/messages.properties 4 Nov 2010 18:43:15 -0000 @@ -18,5 +18,5 @@ exception.noProjectMatchThePath=The path {0} does not match any existing project. exception.pathNotValid=The path {0} for the resource is not a valid path as the first segment does not represent a project. exception.propertyAndPathIdNotSpecified=At least one of the "property" or "pathId" attributes must be specified. -exception.resourceNotSpecified=A resource name must be specified for the eclipse.refreshLocal task. +exception.resourceNotSpecified=A resource name must be specified for the {0} task. warning.projectDoesNotExist=Warning: project {0} does not exist and cannot be refreshed.