org.gnu.gconf
public class ConfValue extends MemStruct
Constructor Summary | |
---|---|
ConfValue(ConfValueType type)
Construct a new ConfValue object of the type provided.
| |
ConfValue(Handle handle) |
Method Summary | |
---|---|
protected static Handle | gconf_value_copy(Handle source) |
protected static void | gconf_value_free(Handle value) |
protected static boolean | gconf_value_get_bool(Handle value) |
protected static Handle | gconf_value_get_car(Handle value) |
protected static Handle | gconf_value_get_cdr(Handle value) |
protected static double | gconf_value_get_float(Handle value) |
protected static int | gconf_value_get_int(Handle value) |
protected static Object[] | gconf_value_get_list(Handle value) |
protected static int | gconf_value_get_list_type(Handle value) |
protected static Handle | gconf_value_get_schema(Handle value) |
protected static String | gconf_value_get_string(Handle value) |
protected static Handle | gconf_value_new(int type) |
protected static void | gconf_value_set_bool(Handle value, boolean theBool) |
protected static void | gconf_value_set_car(Handle value, Handle theCar) |
protected static void | gconf_value_set_cdr(Handle value, Handle theCdr) |
protected static void | gconf_value_set_float(Handle value, double theFloat) |
protected static void | gconf_value_set_int(Handle value, int theInt) |
protected static void | gconf_value_set_list(Handle value, Object[] theList) |
protected static void | gconf_value_set_list_type(Handle value, int type) |
protected static void | gconf_value_set_schema(Handle value, Handle theSchema) |
protected static void | gconf_value_set_string(Handle value, String theString) |
protected static String | gconf_value_to_string(Handle value) |
boolean | getBoolean() |
ConfValue | getCar() |
ConfValue | getCdr() |
double | getDouble() |
int | getInt() |
List | getList() |
ConfValueType | getListType() |
ConfSchema | getSchema() |
String | getString() |
void | setBoolean(boolean theBoolean) |
void | setCar(ConfValue theCar) |
void | setCdr(ConfValue theCdr) |
void | setDouble(double theDouble) |
void | setInt(int theInt) |
void | setList(List theList) |
void | setListType(ConfValueType type) |
void | setSchema(ConfSchema theSchema) |
void | setString(String theString) |
String | toString() |
Parameters: type