
org.biojava.nbio.structure.validation.SymmClash Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of biojava-structure Show documentation
Show all versions of biojava-structure Show documentation
The protein structure modules of BioJava.
/*
* BioJava development code
*
* This code may be freely distributed and modified under the
* terms of the GNU Lesser General Public Licence. This should
* be distributed with the code. If you do not have a copy,
* see:
*
* http://www.gnu.org/copyleft/lesser.html
*
* Copyright for this code is held jointly by the individual
* authors. These should be listed in @author doc comments.
*
* For more information on the BioJava project and its aims,
* or to join the biojava-l mailing list, visit the home page
* at:
*
* http://www.biojava.org/
*
*/
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2013.12.17 at 03:04:15 PM PST
//
package org.biojava.nbio.structure.validation;
import javax.xml.bind.annotation.*;
import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import java.math.BigDecimal;
import java.math.BigInteger;
/**
* 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="atom" use="required" type="{http://www.w3.org/2001/XMLSchema}NCName" />
* <attribute name="clashmag" use="required" type="{http://www.w3.org/2001/XMLSchema}decimal" />
* <attribute name="dist" use="required" type="{http://www.w3.org/2001/XMLSchema}decimal" />
* <attribute name="scid" use="required" type="{http://www.w3.org/2001/XMLSchema}integer" />
* <attribute name="symop" use="required" type="{http://www.w3.org/2001/XMLSchema}NMTOKEN" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "")
@XmlRootElement(name = "symm-clash")
public class SymmClash {
@XmlAttribute(name = "atom", required = true)
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
@XmlSchemaType(name = "NCName")
protected String atom;
@XmlAttribute(name = "clashmag", required = true)
protected BigDecimal clashmag;
@XmlAttribute(name = "dist", required = true)
protected BigDecimal dist;
@XmlAttribute(name = "scid", required = true)
protected BigInteger scid;
@XmlAttribute(name = "symop", required = true)
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
@XmlSchemaType(name = "NMTOKEN")
protected String symop;
/**
* Gets the value of the atom property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAtom() {
return atom;
}
/**
* Sets the value of the atom property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAtom(String value) {
this.atom = value;
}
/**
* Gets the value of the clashmag property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getClashmag() {
return clashmag;
}
/**
* Sets the value of the clashmag property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setClashmag(BigDecimal value) {
this.clashmag = value;
}
/**
* Gets the value of the dist property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getDist() {
return dist;
}
/**
* Sets the value of the dist property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setDist(BigDecimal value) {
this.dist = value;
}
/**
* Gets the value of the scid property.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public BigInteger getScid() {
return scid;
}
/**
* Sets the value of the scid property.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setScid(BigInteger value) {
this.scid = value;
}
/**
* Gets the value of the symop property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSymop() {
return symop;
}
/**
* Sets the value of the symop property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSymop(String value) {
this.symop = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy