SASAX-RSS parser

jp.ne.dti.lares.foozy.sasax.rss
Class ImageElement

java.lang.Object
  |
  +--jp.ne.dti.lares.foozy.sasax.AbstractElement
        |
        +--jp.ne.dti.lares.foozy.sasax.CompositeElement
              |
              +--jp.ne.dti.lares.foozy.sasax.rss.ImageElement
All Implemented Interfaces:
jp.ne.dti.lares.foozy.sasax.Element

public class ImageElement
extends jp.ne.dti.lares.foozy.sasax.CompositeElement

Class to parse "image" element of RSS.

This has "MUST ITEM"s as shown below:

This has no "OPTIONAL ITEM".

This:

Author:
FUJIWARA Katsunori <foozy@lares.dti.ne.jp>(code/doc)

Field Summary
 jp.ne.dti.lares.foozy.sasax.StringElement link
          "link" sub element.
 jp.ne.dti.lares.foozy.sasax.StringElement title
          "title" sub element.
 jp.ne.dti.lares.foozy.sasax.StringElement url
          "url" sub element.
 
Constructor Summary
ImageElement(jp.ne.dti.lares.foozy.sasax.Element parent)
          Constructor.
 
Methods inherited from class jp.ne.dti.lares.foozy.sasax.CompositeElement
accepts, addComponent, addComponent, addMustItem, addMustItem, addOptionalItem, addOptionalItem, characters, endElement, examine, getComponent, getLName, getURI, isEmpty, startElement
 
Methods inherited from class jp.ne.dti.lares.foozy.sasax.AbstractElement
addCleanup, addNotification, clear, ensureDetermined, fireElementStarted, getParent, ignorableWhitespace, isDetermined, notifyDetermined, notifyDetermined, processingInstruction, setDetermined, skippedEntity
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

title

public final jp.ne.dti.lares.foozy.sasax.StringElement title
"title" sub element.

This does:

This element is registered as "MUST ITEM" of this.


url

public final jp.ne.dti.lares.foozy.sasax.StringElement url
"url" sub element.

This does:

This element is registered as "MUST ITEM" of this.


link

public final jp.ne.dti.lares.foozy.sasax.StringElement link
"link" sub element.

This does:

This element is registered as "MUST ITEM" of this.

Constructor Detail

ImageElement

public ImageElement(jp.ne.dti.lares.foozy.sasax.Element parent)
Constructor.
Parameters:
parent - of this element

SASAX-RSS parser