SASAX-RSS parser

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

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

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

Class to parse "rdf:Seq" element of RSS.

This has "MUST ITEM"s as shown below:

This has no "OPTIONAL ITEM".

This does:

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

Field Summary
 jp.ne.dti.lares.foozy.sasax.EmptyElement li
          Repeated "li" element.
 jp.ne.dti.lares.foozy.sasax.ElementRepetition repetition
          Repetition of "li" element.
 
Constructor Summary
RDFSeqElement(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

repetition

public final jp.ne.dti.lares.foozy.sasax.ElementRepetition repetition
Repetition of "li" element.

li

public final jp.ne.dti.lares.foozy.sasax.EmptyElement li
Repeated "li" element.

This element does:

Constructor Detail

RDFSeqElement

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

SASAX-RSS parser