de.sekmi.li2b2.hive.pm.Param Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of li2b2-xml Show documentation
Show all versions of li2b2-xml Show documentation
Message structures and code for parsing.
Used by client and server.
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;
}