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

it.uniroma2.art.coda.pearl.model.annotation.AnnotationParam Maven / Gradle / Ivy

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

import it.uniroma2.art.coda.pearl.model.annotation.param.ParamValueInterface;

import java.util.List;

public class AnnotationParam {
	private String name;
	private List valueList;
	
	public AnnotationParam(String name, List valueList) {
		this.name = name;
		this.valueList = valueList;
	}

	public String getName() {
		return name;
	}

	public List getValueList() {
		return valueList;
	}
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy