Show CheckBoxWithID.java syntax highlighted
package ucalgary.ebe.webui.client.ui;
import com.google.gwt.user.client.ui.CheckBox;
public class CheckBoxWithID extends CheckBox {
private long id;
public CheckBoxWithID(long id) {
super();
this.id = id;
}
public void setId(long id) {
this.id = id;
}
public long getId() {
return this.id;
}
}
See more files for this project here