Bug 236980 [launching] Support ILaunchConfigurations on EFS (copyright + sincetags)
diff --git a/ant/org.eclipse.ant.ui/Ant Tools Support/org/eclipse/ant/internal/ui/refactoring/LaunchConfigurationBuildfileChange.java b/ant/org.eclipse.ant.ui/Ant Tools Support/org/eclipse/ant/internal/ui/refactoring/LaunchConfigurationBuildfileChange.java
index 6869f05..2630adf 100644
--- a/ant/org.eclipse.ant.ui/Ant Tools Support/org/eclipse/ant/internal/ui/refactoring/LaunchConfigurationBuildfileChange.java
+++ b/ant/org.eclipse.ant.ui/Ant Tools Support/org/eclipse/ant/internal/ui/refactoring/LaunchConfigurationBuildfileChange.java
@@ -56,6 +56,7 @@
 
     /**
      * Create a change for each launch configuration which needs to be updated for this IJavaProject rename.
+     * @since 3.5
      */
     public static Change createChangesForProjectRename(IProject project, String newProjectName) throws CoreException {
         String projectName= project.getDescription().getName();
@@ -152,6 +153,12 @@
         fNewConfigContainerName = newContainerName;
     }
 
+    /**
+     * Creates a new container name for the given configuration
+     * @param launchConfiguration
+     * @return the new container name
+     * @since 3.5
+     */
     private static String computeNewContainerName(ILaunchConfiguration launchConfiguration) {
         IFile file = launchConfiguration.getFile();
         if (file != null) {