org.jcoderz.phoenix.findbugs.jaxb
Interface ErrorType

All Known Implementing Classes:
ErrorTypeImpl

public interface ErrorType

Java content class for ErrorType complex type.

The following schema fragment specifies the expected content contained within this java content object. (defined at file:/home/fawkez/dev/src/xml/findbugs/findbugs.xsd line 212)

 <complexType name="ErrorType">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <element name="ErrorMessage" type="{http://www.w3.org/2001/XMLSchema}string"/>
         <element name="Exception" type="{http://www.w3.org/2001/XMLSchema}string"/>
         <element name="StackTrace" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
       </sequence>
     </restriction>
   </complexContent>
 </complexType>
 


Method Summary
 String getErrorMessage()
          Gets the value of the errorMessage property.
 String getException()
          Gets the value of the exception property.
 List getStackTrace()
          Gets the value of the StackTrace property.
 boolean isSetErrorMessage()
           
 boolean isSetException()
           
 boolean isSetStackTrace()
           
 void setErrorMessage(String value)
          Sets the value of the errorMessage property.
 void setException(String value)
          Sets the value of the exception property.
 void unsetErrorMessage()
           
 void unsetException()
           
 void unsetStackTrace()
           
 

Method Detail

getException

String getException()
Gets the value of the exception property.

Returns:
possible object is String

setException

void setException(String value)
Sets the value of the exception property.

Parameters:
value - allowed object is String

isSetException

boolean isSetException()

unsetException

void unsetException()

getErrorMessage

String getErrorMessage()
Gets the value of the errorMessage property.

Returns:
possible object is String

setErrorMessage

void setErrorMessage(String value)
Sets the value of the errorMessage property.

Parameters:
value - allowed object is String

isSetErrorMessage

boolean isSetErrorMessage()

unsetErrorMessage

void unsetErrorMessage()

getStackTrace

List getStackTrace()
Gets the value of the StackTrace property.

This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a set method for the StackTrace property.

For example, to add a new item, do as follows:

    getStackTrace().add(newItem);
 

Objects of the following type(s) are allowed in the list String


isSetStackTrace

boolean isSetStackTrace()

unsetStackTrace

void unsetStackTrace()


Copyright 2007 The jCoderZ Project.