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