mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-14 20:45:22 +02:00
[cleanup] Fixing @since tag version
This commit is contained in:
parent
f597062442
commit
47f2f1bde5
2 changed files with 28 additions and 23 deletions
|
@ -30,11 +30,16 @@ import org.eclipse.dstore.core.model.DataStore;
|
|||
public class UniversalServerUtilities {
|
||||
|
||||
|
||||
/**
|
||||
* getUserPreferencesDirectory() - returns directory on IFS where to store user settings
|
||||
*
|
||||
* @since org.eclipse.rse.services.dstore 3.0 the DataStore argument was added
|
||||
*/
|
||||
/**
|
||||
* getUserPreferencesDirectory() - returns directory on IFS where to store
|
||||
* user settings.
|
||||
*
|
||||
* 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)
|
||||
{
|
||||
String userPreferencesDirectory = dataStore.getClient().getProperty("user.home"); //$NON-NLS-1$
|
||||
|
|
|
@ -22,7 +22,7 @@ import java.io.File;
|
|||
* This interface is used by the extension point
|
||||
* 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.
|
||||
* @since 7.1
|
||||
* @since org.eclipse.rse.services 3.0
|
||||
*/
|
||||
public interface IFileServiceCodePageConverter {
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue