Show TextBoxWithID.java syntax highlighted
package ucalgary.ebe.webui.client.ui;
import com.google.gwt.user.client.ui.TextBox;
public class TextBoxWithID extends TextBox {
protected long id;
protected String content;
public TextBoxWithID(long id) {
super();
this.id = id;
this.content = null;
}
public TextBoxWithID(long id, String content) {
super();
this.id = id;
this.content = content;
}
public void setId(long id) {
this.id = id;
}
public long getId() {
return this.id;
}
public void setContent(String content) {
this.content = content;
}
public String getContent() {
return this.content;
}
}
See more files for this project here