public interface IPreferencesDelegate
| Modifier and Type | Method and Description |
|---|---|
boolean |
getBoolean(java.lang.String astrKey)
Return the value of the specified preference key.
|
double |
getDouble(java.lang.String astrKey)
Return the value of the specified preference key.
|
float |
getFloat(java.lang.String astrKey)
Return the value of the specified preference key.
|
int |
getInt(java.lang.String astrKey)
Return the value of the specified preference key.
|
long |
getLong(java.lang.String astrKey)
Return the value of the specified preference key.
|
java.lang.String |
getString(java.lang.String astrKey)
Return the value of the specified preference key.
|
void |
setBoolean(java.lang.String astrKey,
boolean abValue)
Set the value of the specified preference key.
|
void |
setDouble(java.lang.String astrKey,
double adValue)
Set the value of the specified preference key.
|
void |
setFloat(java.lang.String astrKey,
float afValue)
Set the value of the specified preference key.
|
void |
setInt(java.lang.String astrKey,
int aiValue)
Set the value of the specified preference key.
|
void |
setLong(java.lang.String astrKey,
long alValue)
Set the value of the specified preference key.
|
void |
setString(java.lang.String astrKey,
java.lang.String astrValue)
Set the value of the specified preference key.
|
java.lang.String getString(java.lang.String astrKey)
astrKey - Preference key.boolean getBoolean(java.lang.String astrKey)
astrKey - Preference key.int getInt(java.lang.String astrKey)
astrKey - Preference key.long getLong(java.lang.String astrKey)
astrKey - Preference key.double getDouble(java.lang.String astrKey)
astrKey - Preference key.float getFloat(java.lang.String astrKey)
astrKey - Preference key.void setString(java.lang.String astrKey,
java.lang.String astrValue)
astrKey - Preference key.astrValue - Preference value.void setBoolean(java.lang.String astrKey,
boolean abValue)
astrKey - Preference key.abValue - Preference value.void setInt(java.lang.String astrKey,
int aiValue)
astrKey - Preference key.aiValue - Preference value.void setLong(java.lang.String astrKey,
long alValue)
astrKey - Preference key.alValue - Preference value.void setDouble(java.lang.String astrKey,
double adValue)
astrKey - Preference key.adValue - Preference value.void setFloat(java.lang.String astrKey,
float afValue)
astrKey - Preference key.afValue - Preference value.Copyright © 2005-2013 Progress Software Corporation and/or its subsidiaries and affiliates. All rights reserved.