org.jcoderz.phoenix.coverage.jaxb.impl
Class CoverageTypeImpl

java.lang.Object
  extended by org.jcoderz.phoenix.coverage.jaxb.impl.CoverageTypeImpl
All Implemented Interfaces:
com.sun.xml.bind.JAXBObject, Serializable, CoverageType, UnmarshallableObject, ValidatableObject, XMLSerializable
Direct Known Subclasses:
CoverageImpl

public class CoverageTypeImpl
extends Object
implements CoverageType, Serializable, com.sun.xml.bind.JAXBObject, UnmarshallableObject, XMLSerializable, ValidatableObject

See Also:
Serialized Form

Nested Class Summary
 class CoverageTypeImpl.Unmarshaller
           
 
Field Summary
protected  float _BranchRate
           
protected  float _LineRate
           
protected  PackagesType _Packages
           
protected  SourcesType _Sources
           
protected  BigInteger _Timestamp
           
protected  String _Version
           
protected  boolean has_BranchRate
           
protected  boolean has_LineRate
           
static Class version
           
 
Constructor Summary
CoverageTypeImpl()
           
 
Method Summary
 com.sun.msv.verifier.DocumentDeclaration createRawValidator()
          Gets the schema fragment associated with this class.
 UnmarshallingEventHandler createUnmarshaller(UnmarshallingContext context)
          Creates an unmarshaller that will unmarshall this object.
 float getBranchRate()
          Gets the value of the branchRate property.
 float getLineRate()
          Gets the value of the lineRate property.
 PackagesType getPackages()
          Gets the value of the packages property.
 Class getPrimaryInterface()
          Gets the main interface that this object implements.
 SourcesType getSources()
          Gets the value of the sources property.
 BigInteger getTimestamp()
          Gets the value of the timestamp property.
 String getVersion()
          Gets the value of the version property.
 boolean isSetBranchRate()
           
 boolean isSetLineRate()
           
 boolean isSetPackages()
           
 boolean isSetSources()
           
 boolean isSetTimestamp()
           
 boolean isSetVersion()
           
 void serializeAttributes(XMLSerializer context)
          Serializes attributes into the specified target.
 void serializeBody(XMLSerializer context)
          Serializes child elements and texts into the specified target.
 void serializeURIs(XMLSerializer context)
          Declares all the namespace URIs this object is using at its top-level scope into the specified target.
 void setBranchRate(float value)
          Sets the value of the branchRate property.
 void setLineRate(float value)
          Sets the value of the lineRate property.
 void setPackages(PackagesType value)
          Sets the value of the packages property.
 void setSources(SourcesType value)
          Sets the value of the sources property.
 void setTimestamp(BigInteger value)
          Sets the value of the timestamp property.
 void setVersion(String value)
          Sets the value of the version property.
 void unsetBranchRate()
           
 void unsetLineRate()
           
 void unsetPackages()
           
 void unsetSources()
           
 void unsetTimestamp()
           
 void unsetVersion()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

has_BranchRate

protected boolean has_BranchRate

_BranchRate

protected float _BranchRate

_Packages

protected PackagesType _Packages

has_LineRate

protected boolean has_LineRate

_LineRate

protected float _LineRate

_Sources

protected SourcesType _Sources

_Version

protected String _Version

_Timestamp

protected BigInteger _Timestamp

version

public static final Class version
Constructor Detail

CoverageTypeImpl

public CoverageTypeImpl()
Method Detail

getBranchRate

public float getBranchRate()
Description copied from interface: CoverageType
Gets the value of the branchRate property.

Specified by:
getBranchRate in interface CoverageType

setBranchRate

public void setBranchRate(float value)
Description copied from interface: CoverageType
Sets the value of the branchRate property.

Specified by:
setBranchRate in interface CoverageType

isSetBranchRate

public boolean isSetBranchRate()
Specified by:
isSetBranchRate in interface CoverageType

unsetBranchRate

public void unsetBranchRate()
Specified by:
unsetBranchRate in interface CoverageType

getPackages

public PackagesType getPackages()
Description copied from interface: CoverageType
Gets the value of the packages property.

Specified by:
getPackages in interface CoverageType
Returns:
possible object is Packages PackagesType

setPackages

public void setPackages(PackagesType value)
Description copied from interface: CoverageType
Sets the value of the packages property.

Specified by:
setPackages in interface CoverageType
Parameters:
value - allowed object is Packages PackagesType

isSetPackages

public boolean isSetPackages()
Specified by:
isSetPackages in interface CoverageType

unsetPackages

public void unsetPackages()
Specified by:
unsetPackages in interface CoverageType

getLineRate

public float getLineRate()
Description copied from interface: CoverageType
Gets the value of the lineRate property.

Specified by:
getLineRate in interface CoverageType

setLineRate

public void setLineRate(float value)
Description copied from interface: CoverageType
Sets the value of the lineRate property.

Specified by:
setLineRate in interface CoverageType

isSetLineRate

public boolean isSetLineRate()
Specified by:
isSetLineRate in interface CoverageType

unsetLineRate

public void unsetLineRate()
Specified by:
unsetLineRate in interface CoverageType

getSources

public SourcesType getSources()
Description copied from interface: CoverageType
Gets the value of the sources property.

Specified by:
getSources in interface CoverageType
Returns:
possible object is SourcesType Sources

setSources

public void setSources(SourcesType value)
Description copied from interface: CoverageType
Sets the value of the sources property.

Specified by:
setSources in interface CoverageType
Parameters:
value - allowed object is SourcesType Sources

isSetSources

public boolean isSetSources()
Specified by:
isSetSources in interface CoverageType

unsetSources

public void unsetSources()
Specified by:
unsetSources in interface CoverageType

getVersion

public String getVersion()
Description copied from interface: CoverageType
Gets the value of the version property.

Specified by:
getVersion in interface CoverageType
Returns:
possible object is String

setVersion

public void setVersion(String value)
Description copied from interface: CoverageType
Sets the value of the version property.

Specified by:
setVersion in interface CoverageType
Parameters:
value - allowed object is String

isSetVersion

public boolean isSetVersion()
Specified by:
isSetVersion in interface CoverageType

unsetVersion

public void unsetVersion()
Specified by:
unsetVersion in interface CoverageType

getTimestamp

public BigInteger getTimestamp()
Description copied from interface: CoverageType
Gets the value of the timestamp property.

Specified by:
getTimestamp in interface CoverageType
Returns:
possible object is BigInteger

setTimestamp

public void setTimestamp(BigInteger value)
Description copied from interface: CoverageType
Sets the value of the timestamp property.

Specified by:
setTimestamp in interface CoverageType
Parameters:
value - allowed object is BigInteger

isSetTimestamp

public boolean isSetTimestamp()
Specified by:
isSetTimestamp in interface CoverageType

unsetTimestamp

public void unsetTimestamp()
Specified by:
unsetTimestamp in interface CoverageType

createUnmarshaller

public UnmarshallingEventHandler createUnmarshaller(UnmarshallingContext context)
Description copied from interface: UnmarshallableObject
Creates an unmarshaller that will unmarshall this object.

Specified by:
createUnmarshaller in interface UnmarshallableObject

serializeBody

public void serializeBody(XMLSerializer context)
                   throws SAXException
Description copied from interface: XMLSerializable
Serializes child elements and texts into the specified target.

Specified by:
serializeBody in interface XMLSerializable
Throws:
SAXException

serializeAttributes

public void serializeAttributes(XMLSerializer context)
                         throws SAXException
Description copied from interface: XMLSerializable
Serializes attributes into the specified target.

Specified by:
serializeAttributes in interface XMLSerializable
Throws:
SAXException

serializeURIs

public void serializeURIs(XMLSerializer context)
                   throws SAXException
Description copied from interface: XMLSerializable
Declares all the namespace URIs this object is using at its top-level scope into the specified target.

Specified by:
serializeURIs in interface XMLSerializable
Throws:
SAXException

getPrimaryInterface

public Class getPrimaryInterface()
Description copied from interface: ValidatableObject
Gets the main interface that this object implements. For example, FooImpl will return Foo from this method.

Specified by:
getPrimaryInterface in interface ValidatableObject

createRawValidator

public com.sun.msv.verifier.DocumentDeclaration createRawValidator()
Description copied from interface: ValidatableObject
Gets the schema fragment associated with this class.

Specified by:
createRawValidator in interface ValidatableObject


Copyright 2007 The jCoderZ Project.