SASAX-RSS parser

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

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

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

Class to parse "item" element of RSS.

This has "MUST ITEM"s as shown below:

This has "OPTIONAL ITEM"s as shown below:

This:

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

Field Summary
 jp.ne.dti.lares.foozy.sasax.StringElement description
          "description" sub element.
 jp.ne.dti.lares.foozy.sasax.StringElement link
          "link" sub element.
 jp.ne.dti.lares.foozy.sasax.StringElement title
          "title" sub element.
 
Constructor Summary
ItemElement(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.


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.


description

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

This does:

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

Constructor Detail

ItemElement

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

SASAX-RSS parser