1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-15 04:55:22 +02:00

[cleanup] Fixing @since tag version

This commit is contained in:
Martin Oberhuber 2008-04-23 20:01:29 +00:00
parent f597062442
commit 47f2f1bde5
2 changed files with 28 additions and 23 deletions

View file

@ -30,11 +30,16 @@ import org.eclipse.dstore.core.model.DataStore;
public class UniversalServerUtilities { public class UniversalServerUtilities {
/** /**
* getUserPreferencesDirectory() - returns directory on IFS where to store user settings * getUserPreferencesDirectory() - returns directory on IFS where to store
* * user settings.
* @since org.eclipse.rse.services.dstore 3.0 the DataStore argument was added *
*/ * The dataStore argument was added in version 3.0 in order to support
* multiple clients in separate Threads each. Before that version, the
* method did not have any argument.
*
* @since org.eclipse.rse.services.dstore 3.0
*/
public static String getUserPreferencesDirectory(DataStore dataStore) public static String getUserPreferencesDirectory(DataStore dataStore)
{ {
String userPreferencesDirectory = dataStore.getClient().getProperty("user.home"); //$NON-NLS-1$ String userPreferencesDirectory = dataStore.getClient().getProperty("user.home"); //$NON-NLS-1$

View file

@ -22,7 +22,7 @@ import java.io.File;
* This interface is used by the extension point * This interface is used by the extension point
* It allows overriding the Universal File Subsystem translation of files, and results in * It allows overriding the Universal File Subsystem translation of files, and results in
* binary transfer, with calls to the implementor to handle code page conversion. * binary transfer, with calls to the implementor to handle code page conversion.
* @since 7.1 * @since org.eclipse.rse.services 3.0
*/ */
public interface IFileServiceCodePageConverter { public interface IFileServiceCodePageConverter {