Re: [java-gnome-hackers] Update
Brought to you by:
afcowie
From: Jeffrey M. <ku...@zo...> - 2003-12-26 18:35:23
|
On Fri, 2003-12-26 at 13:31, Luca De Rugeriis wrote: > /** > * 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? Yes. All of the methods look correct. |