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:
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 {
|
||||
/**
|
||||
* @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);
|
||||
|
|
Loading…
Add table
Reference in a new issue