tests/enum.vala
authorAlan Knowles <alan@roojs.com>
Wed, 20 May 2015 11:50:04 +0000 (19:50 +0800)
committerAlan Knowles <alan@roojs.com>
Wed, 20 May 2015 11:50:04 +0000 (19:50 +0800)
tests/enum.vala.c

tests/enum.vala

index 724f05f..85a83f3 100644 (file)
@@ -7,9 +7,9 @@ int main (string[] args) {
        Gtk.init(ref args);
        var type = typeof(Gtk.Box);
        var  ocl = (ObjectClass) type.class_ref ();
-       foreach (ParamSpec spec in ocl.list_properties ()) {
-               stdout.printf ("%s\n", spec.get_name ());
-       }
+       var ps = ocl.find_property("orientation");
+       var vt = ps.value_type;
+       print("%s\n", vt.name());
         
        return 0;
 }