Code Search for Developers
 
 
  

JavaMethodContentNode.java from MASE: Agile Software Engineering at Krugle


Show JavaMethodContentNode.java syntax highlighted

package ca.ucalgary.cpsc.ebe.fitClipse.javaSourceModification;

public class JavaMethodContentNode implements JavaMethodContent{

	private String content; 
	public String render() {
		return content;
	}
	
	public JavaMethodContentNode(String content){
		this.content = content;
	}

	public String getContent() {
		return content;
	}

	public void setContent(String content) {
		this.content = 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

  JavaClass.java
  JavaClassChild.java
  JavaFile.java
  JavaMethod.java
  JavaMethodContent.java
  JavaMethodContentNode.java
  JavaMethodParameter.java
  JavaMultilineComment.java
  JavaProperty.java
  JavaSourceUtil.java