gconf-2.0 Reference Manual

Synopsis

public class Value {
    public    ValueType                 type ;


    public                              Value                     ( ValueType           type ) ;
    public                              Value.from_string         ( ValueType           type,
                                                                    string              str ) 
                                                             throws GLib.Error;


    public    int                       compare                   ( Value               value_b ) ;
    public    weak Value                copy                      (  ) ;
    public    bool                      get_bool                  (  ) ;
    public    weak Value                get_car                   (  ) ;
    public    weak Value                get_cdr                   (  ) ;
    public    double                    get_float                 (  ) ;
    public    int                       get_int                   (  ) ;
    public    weak GLib.SList           get_list                  (  ) ;
    public    ValueType                 get_list_type             (  ) ;
    public    weak Schema               get_schema                (  ) ;
    public    weak string               get_string                (  ) ;
    public    void                      set_bool                  ( bool                the_bool ) ;
    public    void                      set_car                   ( Value               car ) ;
    public    void                      set_car_nocopy            ( Value               car ) ;
    public    void                      set_cdr                   ( Value               cdr ) ;
    public    void                      set_cdr_nocopy            ( Value               cdr ) ;
    public    void                      set_float                 ( double              the_float ) ;
    public    void                      set_int                   ( int                 the_int ) ;
    public    void                      set_list                  ( GLib.SList          list ) ;
    public    void                      set_list_nocopy           ( GLib.SList          list ) ;
    public    void                      set_list_type             ( ValueType           type ) ;
    public    void                      set_schema                ( Schema              sc ) ;
    public    void                      set_schema_nocopy         ( Schema              sc ) ;
    public    void                      set_string                ( string              the_str ) ;
    public    weak string               to_string                 (  ) ;
}

Value Description

Details

Constructor Details

Value ()
    public                              Value                     ( ValueType           type ) ;		

Value.from_string ()
    public                              Value.from_string         ( ValueType           type,
                                                                    string              str ) 
                                                             throws GLib.Error;		

Field Details

type
    public    ValueType                 type ;		

Signal Details

Property Details

Method Details

compare ()
    public    int                       compare                   ( Value               value_b ) ;		

copy ()
    public    weak Value                copy                      (  ) ;		

get_bool ()
    public    bool                      get_bool                  (  ) ;		

get_car ()
    public    weak Value                get_car                   (  ) ;		

get_cdr ()
    public    weak Value                get_cdr                   (  ) ;		

get_float ()
    public    double                    get_float                 (  ) ;		

get_int ()
    public    int                       get_int                   (  ) ;		

get_list ()
    public    weak GLib.SList           get_list                  (  ) ;		

get_list_type ()
    public    ValueType                 get_list_type             (  ) ;		

get_schema ()
    public    weak Schema               get_schema                (  ) ;		

get_string ()
    public    weak string               get_string                (  ) ;		

set_bool ()
    public    void                      set_bool                  ( bool                the_bool ) ;		

set_car ()
    public    void                      set_car                   ( Value               car ) ;		

set_car_nocopy ()
    public    void                      set_car_nocopy            ( Value               car ) ;		

set_cdr ()
    public    void                      set_cdr                   ( Value               cdr ) ;		

set_cdr_nocopy ()
    public    void                      set_cdr_nocopy            ( Value               cdr ) ;		

set_float ()
    public    void                      set_float                 ( double              the_float ) ;		

set_int ()
    public    void                      set_int                   ( int                 the_int ) ;		

set_list ()
    public    void                      set_list                  ( GLib.SList          list ) ;		

set_list_nocopy ()
    public    void                      set_list_nocopy           ( GLib.SList          list ) ;		

set_list_type ()
    public    void                      set_list_type             ( ValueType           type ) ;		

set_schema ()
    public    void                      set_schema                ( Schema              sc ) ;		

set_schema_nocopy ()
    public    void                      set_schema_nocopy         ( Schema              sc ) ;		

set_string ()
    public    void                      set_string                ( string              the_str ) ;		

to_string ()
    public    weak string               to_string                 (  ) ;		


Created by Valadoc