// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2014.02.27 at 10:04:52 PM YEKT // package ru.csu.stan.java.classgen.jaxb; import java.math.BigInteger; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlSeeAlso; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for BaseElement complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="BaseElement"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <attribute name="fromlineno" type="{http://www.w3.org/2001/XMLSchema}integer" /> * <attribute name="col_offset" type="{http://www.w3.org/2001/XMLSchema}integer" /> * <attribute name="name" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="label" type="{http://www.w3.org/2001/XMLSchema}string" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "BaseElement") @XmlSeeAlso({ Class.class, BaseTypedElement.class, ParentClass.class, Type.class, ModifierType.class }) public class BaseElement { @XmlAttribute protected BigInteger fromlineno; @XmlAttribute(name = "col_offset") protected BigInteger colOffset; @XmlAttribute protected String name; @XmlAttribute protected String label; /** * Gets the value of the fromlineno property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getFromlineno() { return fromlineno; } /** * Sets the value of the fromlineno property. * * @param value * allowed object is * {@link BigInteger } * */ public void setFromlineno(BigInteger value) { this.fromlineno = value; } /** * Gets the value of the colOffset property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getColOffset() { return colOffset; } /** * Sets the value of the colOffset property. * * @param value * allowed object is * {@link BigInteger } * */ public void setColOffset(BigInteger value) { this.colOffset = value; } /** * Gets the value of the name property. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } /** * Gets the value of the label property. * * @return * possible object is * {@link String } * */ public String getLabel() { return label; } /** * Sets the value of the label property. * * @param value * allowed object is * {@link String } * */ public void setLabel(String value) { this.label = value; } }