Code Search for Developers
 
 
  

TextBoxWithID.java from MASE: Agile Software Engineering at Krugle


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

MASE: Agile Software Engineering

The MASE project investigates methods to support the coordination and executable acceptance testing of software projects. Keywords: Agile methods, distributed teams, Extreme Programming. See http://ebe.cpsc.ucalgary.ca/ebe for more information.

Project homepage: http://sourceforge.net/projects/mase
Programming language(s): Java,XML
License: other

  CreateIterationDialogBox.java
  CreateProjectDialogBox.java
  CreateStoryCardDialogBox.java
  FloatTextBoxWithID.java
  ImageWithID.java
  ProjectListBox.java
  ProjectWhiteBoard.java
  StoryCardGrid.java
  StoryCardParentListBox.java
  TextBoxWithID.java
  TimestampTextBoxWithID.java
  WebUIMenu.java