astronomy.data.spectra.impl
Class AuthorTypeImpl

java.lang.Object
  extended by astronomy.data.spectra.impl.AuthorTypeImpl
All Implemented Interfaces:
AuthorType, UnmarshallableObject, ValidatableObject, XMLSerializable, com.sun.xml.bind.JAXBObject

public class AuthorTypeImpl
extends Object
implements AuthorType, com.sun.xml.bind.JAXBObject, UnmarshallableObject, XMLSerializable, ValidatableObject


Nested Class Summary
static class AuthorTypeImpl.InstitutionTypeImpl
           
 class AuthorTypeImpl.Unmarshaller
           
 
Nested classes/interfaces inherited from interface astronomy.data.spectra.AuthorType
AuthorType.InstitutionType
 
Field Summary
protected  Calendar _Date
           
protected  com.sun.xml.bind.util.ListImpl _Email
           
protected  String _Firstname
           
protected  com.sun.xml.bind.util.ListImpl _Institution
           
protected  String _Lastname
           
protected  String _Middlename
           
protected  String _Url
           
protected  com.sun.xml.bind.util.ListImpl _Webpage
           
static Class version
           
 
Constructor Summary
AuthorTypeImpl()
           
 
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.
 Calendar getDate()
           
 List getEmail()
          Gets the value of the Email property.
 String getFirstname()
           
 List getInstitution()
          Gets the value of the Institution property.
 String getLastname()
           
 String getMiddlename()
           
 Class getPrimaryInterface()
          Gets the main interface that this object implements.
 String getUrl()
           
 List getWebpage()
          Gets the value of the Webpage property.
 void serializeAttributeBody(XMLSerializer context)
          Serializes itself as an attribute body into the specified target.
 void serializeAttributes(XMLSerializer context)
          Serializes attributes into the specified target.
 void serializeElementBody(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 setDate(Calendar value)
           
 void setFirstname(String value)
           
 void setLastname(String value)
           
 void setMiddlename(String value)
           
 void setUrl(String value)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

_Email

protected com.sun.xml.bind.util.ListImpl _Email

_Webpage

protected com.sun.xml.bind.util.ListImpl _Webpage

_Lastname

protected String _Lastname

_Middlename

protected String _Middlename

_Institution

protected com.sun.xml.bind.util.ListImpl _Institution

_Firstname

protected String _Firstname

_Date

protected Calendar _Date

_Url

protected String _Url

version

public static final Class version
Constructor Detail

AuthorTypeImpl

public AuthorTypeImpl()
Method Detail

getEmail

public List getEmail()
Description copied from interface: AuthorType
Gets the value of the Email 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's any setter method for the Email property. For example, to add a new item, do as follows:
    getEmail().add(newItem);
 
Objects of the following type(s) are allowed in the list String

Specified by:
getEmail in interface AuthorType

getWebpage

public List getWebpage()
Description copied from interface: AuthorType
Gets the value of the Webpage 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's any setter method for the Webpage property. For example, to add a new item, do as follows:
    getWebpage().add(newItem);
 
Objects of the following type(s) are allowed in the list String

Specified by:
getWebpage in interface AuthorType

getLastname

public String getLastname()
Specified by:
getLastname in interface AuthorType
Returns:
possible object is String

setLastname

public void setLastname(String value)
Specified by:
setLastname in interface AuthorType
Parameters:
value - allowed object is String

getMiddlename

public String getMiddlename()
Specified by:
getMiddlename in interface AuthorType
Returns:
possible object is String

setMiddlename

public void setMiddlename(String value)
Specified by:
setMiddlename in interface AuthorType
Parameters:
value - allowed object is String

getInstitution

public List getInstitution()
Description copied from interface: AuthorType
Gets the value of the Institution 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's any setter method for the Institution property. For example, to add a new item, do as follows:
    getInstitution().add(newItem);
 
Objects of the following type(s) are allowed in the list AuthorType.InstitutionType

Specified by:
getInstitution in interface AuthorType

getFirstname

public String getFirstname()
Specified by:
getFirstname in interface AuthorType
Returns:
possible object is String

setFirstname

public void setFirstname(String value)
Specified by:
setFirstname in interface AuthorType
Parameters:
value - allowed object is String

getDate

public Calendar getDate()
Specified by:
getDate in interface AuthorType
Returns:
possible object is Calendar

setDate

public void setDate(Calendar value)
Specified by:
setDate in interface AuthorType
Parameters:
value - allowed object is Calendar

getUrl

public String getUrl()
Specified by:
getUrl in interface AuthorType
Returns:
possible object is String

setUrl

public void setUrl(String value)
Specified by:
setUrl in interface AuthorType
Parameters:
value - allowed object is String

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

serializeElementBody

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

Specified by:
serializeElementBody 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

serializeAttributeBody

public void serializeAttributeBody(XMLSerializer context)
                            throws SAXException
Description copied from interface: XMLSerializable
Serializes itself as an attribute body into the specified target.

Specified by:
serializeAttributeBody 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