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

clarified the comments

This commit is contained in:
Michael Scharf 2006-12-11 22:14:44 +00:00
parent e49f27c4b1
commit a72bc9ed55

View file

@ -18,21 +18,21 @@ package org.eclipse.tm.terminal;
*/
public interface ISettingsStore {
/**
* @param key
* @param key alpha numeric key, may contain dots (.)
* @return value
*/
String get(String key);
/**
* @param key
* @param key alpha numeric key, may contain dots (.)
* @param defaultValue
* @return the value or the fecaault
* @return the value or the default
*/
String get(String key, String defaultValue);
/**
* Save a string value
* @param key
* @param key alpha numeric key, may contain dots (.)
* @param value
*/
void put(String key, String value);