org.nmdp.ngs.hml.jaxb.VariantEffect Maven / Gradle / Ivy
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.10-b140310.1920
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2015.06.03 at 09:54:38 AM CDT
//
package org.nmdp.ngs.hml.jaxb;
import java.util.HashMap;
import java.util.Map;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAnyAttribute;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.namespace.QName;
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <attribute name="term" use="required">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <minLength value="1"/>
* </restriction>
* </simpleType>
* </attribute>
* <attribute name="hgvs">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <minLength value="1"/>
* </restriction>
* </simpleType>
* </attribute>
* <attribute name="uri" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
* <anyAttribute/>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "")
@XmlRootElement(name = "variant-effect")
public class VariantEffect {
@XmlAttribute(name = "term", required = true)
protected String term;
@XmlAttribute(name = "hgvs")
protected String hgvs;
@XmlAttribute(name = "uri")
@XmlSchemaType(name = "anyURI")
protected String uri;
@XmlAnyAttribute
private Map otherAttributes = new HashMap();
/**
* Gets the value of the term property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTerm() {
return term;
}
/**
* Sets the value of the term property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTerm(String value) {
this.term = value;
}
/**
* Gets the value of the hgvs property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getHgvs() {
return hgvs;
}
/**
* Sets the value of the hgvs property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setHgvs(String value) {
this.hgvs = value;
}
/**
* Gets the value of the uri property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getUri() {
return uri;
}
/**
* Sets the value of the uri property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setUri(String value) {
this.uri = value;
}
/**
* Gets a map that contains attributes that aren't bound to any typed property on this class.
*
*
* the map is keyed by the name of the attribute and
* the value is the string value of the attribute.
*
* the map returned by this method is live, and you can add new attribute
* by updating the map directly. Because of this design, there's no setter.
*
*
* @return
* always non-null
*/
public Map getOtherAttributes() {
return otherAttributes;
}
}