Code Search for Developers
 
 
  

JavaMethodParameter.java from MASE: Agile Software Engineering at Krugle


Show JavaMethodParameter.java syntax highlighted

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

public class JavaMethodParameter {

	private String name;
	private String type;
	public JavaMethodParameter(){
	}
	public JavaMethodParameter(String name, String type){
		this.name = name;
		this.type=type;
	}
	
	public void setName(String name){
		this.name = name;
	}
	
	public void setType(String type){
		this.type= type;
		
	}
	
	public String getType(){
		return this.type;
	}
	
	public String render(){
		
		StringBuffer result = new StringBuffer();
		result.append(type + " " + name);
		return result.toString();
	}
}




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

  ActionFixtureSource.java
  FixtureSource.java
  FixtureSourceFactory.java
  JavaClass.java
  JavaClassChild.java
  JavaFile.java
  JavaMethod.java
  JavaMethodContent.java
  JavaMethodContentNode.java
  JavaMethodParameter.java
  JavaProperty.java
  JavaSourceUtil.java