org.gnu.gconf
public class ConfEntry extends MemStruct
| Constructor Summary | |
|---|---|
| ConfEntry(String key, ConfValue value)
Construct a new ConfEntry object
| |
| ConfEntry(Handle handle) | |
| Method Summary | |
|---|---|
| protected static boolean | gconf_entry_get_is_default(Handle entry) |
| protected static String | gconf_entry_get_key(Handle entry) |
| protected static String | gconf_entry_get_schema_name(Handle entry) |
| protected static Handle | gconf_entry_get_value(Handle entry) |
| protected static Handle | gconf_entry_new_nocopy(String key, Handle value) |
| protected static void | gconf_entry_set_is_default(Handle entry, boolean isDefault) |
| protected static void | gconf_entry_set_schema_name(Handle entry, String schemaName) |
| protected static void | gconf_entry_set_value_nocopy(Handle entry, Handle value) |
| protected static Handle | gconf_entry_steal_value(Handle entry) |
| String | getKey()
Return the key field of the entry. |
| String | getSchemaName() |
| ConfValue | getValue()
Return the value field of the entry. |
| boolean | isDefault()
Returns if the value in this entry is a default value. |
| void | setIsDefault(boolean isDefault) |
| void | setSchemaName(String name) |
| void | setValue(ConfValue value) |
| ConfValue | stealValue()
Extract the value from this ConfEntry leaving the value set to null. |
Parameters: key value