spot
Interface Worktype


public interface Worktype

The following schema fragment specifies the expected content contained within this java content object.

 <complexType name="worktype">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <element name="FILE" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/>
       </sequence>
       <attribute name="duration" type="{http://www.w3.org/2001/XMLSchema}decimal" />
       <attribute name="reviewedBy" type="{http://www.w3.org/2001/XMLSchema}string" />
       <attribute name="unitTests" type="{http://www.w3.org/2001/XMLSchema}integer" />
       <attribute name="date" type="{http://www.w3.org/2001/XMLSchema}long" />
       <attribute name="pair" type="{http://www.w3.org/2001/XMLSchema}string" />
       <attribute name="type">
         <simpleType>
           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
             <enumeration value="paired"/>
             <enumeration value="solo"/>
             <enumeration value="reviewedBy"/>
           </restriction>
         </simpleType>
       </attribute>
       <attribute name="purpose">
         <simpleType>
           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
             <enumeration value="refactor"/>
             <enumeration value="add"/>
             <enumeration value="defect"/>
           </restriction>
         </simpleType>
       </attribute>
     </restriction>
   </complexContent>
 </complexType>
 


Method Summary
 long getDate()
           
 java.math.BigDecimal getDuration()
           
 java.util.List getFILE()
           
 java.lang.String getPair()
           
 java.lang.String getPurpose()
           
 java.lang.String getReviewedBy()
           
 java.lang.String getType()
           
 java.math.BigInteger getUnitTests()
           
 void setDate(long value)
           
 void setDuration(java.math.BigDecimal value)
           
 void setPair(java.lang.String value)
           
 void setPurpose(java.lang.String value)
           
 void setReviewedBy(java.lang.String value)
           
 void setType(java.lang.String value)
           
 void setUnitTests(java.math.BigInteger value)
           
 

Method Detail

getPurpose

public java.lang.String getPurpose()

setPurpose

public void setPurpose(java.lang.String value)

getType

public java.lang.String getType()

setType

public void setType(java.lang.String value)

getPair

public java.lang.String getPair()

setPair

public void setPair(java.lang.String value)

getUnitTests

public java.math.BigInteger getUnitTests()

setUnitTests

public void setUnitTests(java.math.BigInteger value)

getFILE

public java.util.List getFILE()

getDate

public long getDate()

setDate

public void setDate(long value)

getDuration

public java.math.BigDecimal getDuration()

setDuration

public void setDuration(java.math.BigDecimal value)

getReviewedBy

public java.lang.String getReviewedBy()

setReviewedBy

public void setReviewedBy(java.lang.String value)