All Downloads are FREE. Search and download functionalities are using the official Maven repository.

generated.SourceLine Maven / Gradle / Ivy

The newest version!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2017.09.30 at 11:45:12 AM EDT 
//


package generated;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;


/**
 * 

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">
 *       <sequence>
 *         <element ref="{}Message" minOccurs="0"/>
 *       </sequence>
 *       <attribute name="classname" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="start" type="{http://www.w3.org/2001/XMLSchema}int" />
 *       <attribute name="end" type="{http://www.w3.org/2001/XMLSchema}int" />
 *       <attribute name="startBytecode" type="{http://www.w3.org/2001/XMLSchema}int" />
 *       <attribute name="endBytecode" type="{http://www.w3.org/2001/XMLSchema}int" />
 *       <attribute name="sourcefile" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="sourcepath" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="relSourcepath" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="synthetic" type="{http://www.w3.org/2001/XMLSchema}boolean" />
 *       <attribute name="role" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="primary" type="{http://www.w3.org/2001/XMLSchema}boolean" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "message" }) @XmlRootElement(name = "SourceLine") public class SourceLine { @XmlElement(name = "Message") protected String message; @XmlAttribute(name = "classname", required = true) protected String classname; @XmlAttribute(name = "start") protected Integer start; @XmlAttribute(name = "end") protected Integer end; @XmlAttribute(name = "startBytecode") protected Integer startBytecode; @XmlAttribute(name = "endBytecode") protected Integer endBytecode; @XmlAttribute(name = "sourcefile") protected String sourcefile; @XmlAttribute(name = "sourcepath") protected String sourcepath; @XmlAttribute(name = "relSourcepath") protected String relSourcepath; @XmlAttribute(name = "synthetic") protected Boolean synthetic; @XmlAttribute(name = "role") protected String role; @XmlAttribute(name = "primary") protected Boolean primary; /** * Gets the value of the message property. * * @return * possible object is * {@link String } * */ public String getMessage() { return message; } /** * Sets the value of the message property. * * @param value * allowed object is * {@link String } * */ public void setMessage(String value) { this.message = value; } /** * Gets the value of the classname property. * * @return * possible object is * {@link String } * */ public String getClassname() { return classname; } /** * Sets the value of the classname property. * * @param value * allowed object is * {@link String } * */ public void setClassname(String value) { this.classname = value; } /** * Gets the value of the start property. * * @return * possible object is * {@link Integer } * */ public Integer getStart() { return start; } /** * Sets the value of the start property. * * @param value * allowed object is * {@link Integer } * */ public void setStart(Integer value) { this.start = value; } /** * Gets the value of the end property. * * @return * possible object is * {@link Integer } * */ public Integer getEnd() { return end; } /** * Sets the value of the end property. * * @param value * allowed object is * {@link Integer } * */ public void setEnd(Integer value) { this.end = value; } /** * Gets the value of the startBytecode property. * * @return * possible object is * {@link Integer } * */ public Integer getStartBytecode() { return startBytecode; } /** * Sets the value of the startBytecode property. * * @param value * allowed object is * {@link Integer } * */ public void setStartBytecode(Integer value) { this.startBytecode = value; } /** * Gets the value of the endBytecode property. * * @return * possible object is * {@link Integer } * */ public Integer getEndBytecode() { return endBytecode; } /** * Sets the value of the endBytecode property. * * @param value * allowed object is * {@link Integer } * */ public void setEndBytecode(Integer value) { this.endBytecode = value; } /** * Gets the value of the sourcefile property. * * @return * possible object is * {@link String } * */ public String getSourcefile() { return sourcefile; } /** * Sets the value of the sourcefile property. * * @param value * allowed object is * {@link String } * */ public void setSourcefile(String value) { this.sourcefile = value; } /** * Gets the value of the sourcepath property. * * @return * possible object is * {@link String } * */ public String getSourcepath() { return sourcepath; } /** * Sets the value of the sourcepath property. * * @param value * allowed object is * {@link String } * */ public void setSourcepath(String value) { this.sourcepath = value; } /** * Gets the value of the relSourcepath property. * * @return * possible object is * {@link String } * */ public String getRelSourcepath() { return relSourcepath; } /** * Sets the value of the relSourcepath property. * * @param value * allowed object is * {@link String } * */ public void setRelSourcepath(String value) { this.relSourcepath = value; } /** * Gets the value of the synthetic property. * * @return * possible object is * {@link Boolean } * */ public Boolean isSynthetic() { return synthetic; } /** * Sets the value of the synthetic property. * * @param value * allowed object is * {@link Boolean } * */ public void setSynthetic(Boolean value) { this.synthetic = value; } /** * Gets the value of the role property. * * @return * possible object is * {@link String } * */ public String getRole() { return role; } /** * Sets the value of the role property. * * @param value * allowed object is * {@link String } * */ public void setRole(String value) { this.role = value; } /** * Gets the value of the primary property. * * @return * possible object is * {@link Boolean } * */ public Boolean isPrimary() { return primary; } /** * Sets the value of the primary property. * * @param value * allowed object is * {@link Boolean } * */ public void setPrimary(Boolean value) { this.primary = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy