com.google.gdata.data.docs
Class ArchiveConversion

java.lang.Object
  extended by com.google.gdata.data.AbstractExtension
      extended by com.google.gdata.data.ExtensionPoint
          extended by com.google.gdata.data.docs.ArchiveConversion
All Implemented Interfaces:
Extension

public class ArchiveConversion
extends ExtensionPoint

A map of desired export formats.


Nested Class Summary
 
Nested classes/interfaces inherited from class com.google.gdata.data.ExtensionPoint
ExtensionPoint.CumulativeBlobHandler, ExtensionPoint.ExtensionHandler
 
Nested classes/interfaces inherited from class com.google.gdata.data.AbstractExtension
AbstractExtension.AttributesHandler
 
Field Summary
 
Fields inherited from class com.google.gdata.data.ExtensionPoint
xmlBlob
 
Fields inherited from class com.google.gdata.data.AbstractExtension
localName, namespace
 
Constructor Summary
ArchiveConversion()
          Default mutable constructor.
ArchiveConversion(java.lang.String source, java.lang.String target)
          Immutable constructor.
 
Method Summary
protected  void consumeAttributes(AttributeHelper helper)
          Consumes attributes from the attribute helper.
 boolean equals(java.lang.Object obj)
           
static ExtensionDescription getDefaultDescription(boolean required, boolean repeatable)
          Returns the extension description, specifying whether it is required, and whether it is repeatable.
 java.lang.String getSource()
          Returns the conversion source mime type.
 java.lang.String getTarget()
          Returns the conversion target mime type.
 int hashCode()
           
 boolean hasSource()
          Returns whether it has the conversion source mime type.
 boolean hasTarget()
          Returns whether it has the conversion target mime type.
protected  void putAttributes(AttributeGenerator generator)
          Puts attributes into the attribute generator.
 void setSource(java.lang.String source)
          Sets the conversion source mime type.
 void setTarget(java.lang.String target)
          Sets the conversion target mime type.
 java.lang.String toString()
           
protected  void validate()
          Checks the attributes to see if there are any problems.
 
Methods inherited from class com.google.gdata.data.ExtensionPoint
addExtension, addExtension, addRepeatingExtension, addRepeatingExtension, checkRequiredExtensions, createExtensionInstance, declareExtensions, generate, generateCumulativeXmlBlob, generateExtensions, generateStartElement, getExtension, getExtensionDescription, getExtensionHandler, getExtensions, getHandler, getManifest, getRepeatingExtension, getRepeatingExtensions, getXmlBlob, hasExtension, hasRepeatingExtension, initializeArbitraryXml, parseCumulativeXmlBlob, removeExtension, removeExtension, removeRepeatingExtension, setExtension, setXmlBlob, visit, visitChild, visitChildren
 
Methods inherited from class com.google.gdata.data.AbstractExtension
disableStrictValidation, enableStrictValidation, eq, generate, generateAttributes, getExtensionLocalName, getExtensionNamespace, isImmutable, isStrictValidation, sameClassAs, setImmutable, throwExceptionForMissingAttribute, throwExceptionIfImmutable
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 

Constructor Detail

ArchiveConversion

public ArchiveConversion()
Default mutable constructor.


ArchiveConversion

public ArchiveConversion(java.lang.String source,
                         java.lang.String target)
Immutable constructor.

Parameters:
source - conversion source mime type.
target - conversion target mime type.
Method Detail

getSource

public java.lang.String getSource()
Returns the conversion source mime type.

Returns:
conversion source mime type

setSource

public void setSource(java.lang.String source)
Sets the conversion source mime type.

Parameters:
source - conversion source mime type or null to reset

hasSource

public boolean hasSource()
Returns whether it has the conversion source mime type.

Returns:
whether it has the conversion source mime type

getTarget

public java.lang.String getTarget()
Returns the conversion target mime type.

Returns:
conversion target mime type

setTarget

public void setTarget(java.lang.String target)
Sets the conversion target mime type.

Parameters:
target - conversion target mime type or null to reset

hasTarget

public boolean hasTarget()
Returns whether it has the conversion target mime type.

Returns:
whether it has the conversion target mime type

validate

protected void validate()
Description copied from class: AbstractExtension
Checks the attributes to see if there are any problems. Default implementation does nothing, though generally this is discouraged unless there really are no restrictions.

Overrides:
validate in class AbstractExtension

getDefaultDescription

public static ExtensionDescription getDefaultDescription(boolean required,
                                                         boolean repeatable)
Returns the extension description, specifying whether it is required, and whether it is repeatable.

Parameters:
required - whether it is required
repeatable - whether it is repeatable
Returns:
extension description

putAttributes

protected void putAttributes(AttributeGenerator generator)
Description copied from class: AbstractExtension
Puts attributes into the attribute generator. Called from AbstractExtension.generate(XmlWriter,ExtensionProfile). Default implementation does nothing, though generally this is discouraged unless there really are no attributes.

Overrides:
putAttributes in class AbstractExtension
Parameters:
generator - attribute generator

consumeAttributes

protected void consumeAttributes(AttributeHelper helper)
                          throws ParseException
Description copied from class: AbstractExtension
Consumes attributes from the attribute helper. May also use AttributeHelper.consumeContent(boolean) to consume the element's text content. Called from AbstractExtension.getHandler(com.google.gdata.data.ExtensionProfile, java.lang.String, java.lang.String, org.xml.sax.Attributes). Default implementation does nothing, though generally this is discouraged unless there really are no attributes.

Overrides:
consumeAttributes in class AbstractExtension
Parameters:
helper - attribute helper
Throws:
ParseException - any parsing exception

equals

public boolean equals(java.lang.Object obj)
Overrides:
equals in class java.lang.Object

hashCode

public int hashCode()
Overrides:
hashCode in class java.lang.Object

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Object