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

de.sekmi.li2b2.hive.pm.Param Maven / Gradle / Ivy

There is a newer version: 0.8
Show newest version
package de.sekmi.li2b2.hive.pm;

import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlValue;

public class Param {
	protected Param(){
	}
	public Param(String name, String value){
		this.name = name;
		this.value = value;
	}
	@XmlAttribute
	public String name;
	@XmlValue
	public String value;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy