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

it.uniroma2.art.coda.pearl.model.NodeSingleAnnotation_old Maven / Gradle / Ivy

The newest version!
package it.uniroma2.art.coda.pearl.model;

public class NodeSingleAnnotation {
	String annotationName;
	String param = null;

	public NodeSingleAnnotation(String annoationName) {
		this.annotationName = annoationName;
	}

	public NodeSingleAnnotation(String annoationName, String param) {
		this.annotationName = annoationName;
		this.param = param;
	}

	
	public String getAnnotationName() {
		return annotationName;
	}

	public String getParam() {
		return param;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy