Re: [java-gnome-hackers] Update
Brought to you by:
afcowie
From: Luca De R. <pie...@li...> - 2003-12-26 18:31:59
|
/** * Construct a new BindingSet using a handle to a native resource. */ public BindingSet(int handle) { this.handle = handle; } /** * Construct a new BindingSet object. * @param setName */ public BindingSet(String setName) { handle = gtk_binding_set_new(setName); } static public BindingSet findBindingSet(String setName) { return new BindingSet(gtk_binding_set_find(setName)); } Is the first constructor correct? -- Luca De Rugeriis <pie...@li...> |