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

apoc.algo.wcc.CCVar Maven / Gradle / Ivy

There is a newer version: 3.5.0.2
Show newest version
package apoc.algo.wcc;

public class CCVar {
	
	private String id;
	private String type;
	
	public CCVar(String id,String type){
		this.id=id;
		this.type=type;
	}

	public String getId() {
		return id;
	}

	public String getType() {
		return type;
	}
	

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy