// // 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:05:31 PM YEKT // package ru.csu.stan.java.cfg.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 BaseCfgElement complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="BaseCfgElement"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}integer" /> * <attribute name="fromlineno" type="{http://www.w3.org/2001/XMLSchema}integer" /> * <attribute name="col_offset" type="{http://www.w3.org/2001/XMLSchema}integer" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "BaseCfgElement") @XmlSeeAlso({ TryFinally.class, TryExcept.class, While.class, For.class, If.class, With.class, Block.class }) public class BaseCfgElement { @XmlAttribute protected BigInteger id; @XmlAttribute protected BigInteger fromlineno; @XmlAttribute(name = "col_offset") protected BigInteger colOffset; /** * Gets the value of the id property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getId() { return id; } /** * Sets the value of the id property. * * @param value * allowed object is * {@link BigInteger } * */ public void setId(BigInteger value) { this.id = value; } /** * 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; } }