All Downloads are FREE. Search and download functionalities are using the official Maven repository.

refdiff.core.cst.Parameter Maven / Gradle / Ivy

There is a newer version: 2.0.0
Show newest version
package refdiff.core.cst;

public class Parameter {
	private String name;
	
	public Parameter() {}
	
	public Parameter(String name) {
		this.name = name;
	}
	
	public String getName() {
		return name;
	}
	
	public void setName(String name) {
		this.name = name;
	}
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy