mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-12 11:35:21 +02:00
clarified the comments
This commit is contained in:
parent
e49f27c4b1
commit
a72bc9ed55
1 changed files with 4 additions and 4 deletions
|
@ -18,21 +18,21 @@ package org.eclipse.tm.terminal;
|
||||||
*/
|
*/
|
||||||
public interface ISettingsStore {
|
public interface ISettingsStore {
|
||||||
/**
|
/**
|
||||||
* @param key
|
* @param key alpha numeric key, may contain dots (.)
|
||||||
* @return value
|
* @return value
|
||||||
*/
|
*/
|
||||||
String get(String key);
|
String get(String key);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param key
|
* @param key alpha numeric key, may contain dots (.)
|
||||||
* @param defaultValue
|
* @param defaultValue
|
||||||
* @return the value or the fecaault
|
* @return the value or the default
|
||||||
*/
|
*/
|
||||||
String get(String key, String defaultValue);
|
String get(String key, String defaultValue);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Save a string value
|
* Save a string value
|
||||||
* @param key
|
* @param key alpha numeric key, may contain dots (.)
|
||||||
* @param value
|
* @param value
|
||||||
*/
|
*/
|
||||||
void put(String key, String value);
|
void put(String key, String value);
|
||||||
|
|
Loading…
Add table
Reference in a new issue