islands/RobustXmlFeedParser.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Wed, 17 Jun 2015 17:10:54 +0100
changeset 493 0aed9c69ed48
parent 454 a9cd5ea7cc36
child 642 77d5fddb6462
permissions -rw-r--r--
Fixed target mcz - exit Smalltalk after all packages are exported.

"{ Package: 'stx:goodies/petitparser/islands' }"

"{ NameSpace: Smalltalk }"

XmlFeedParser subclass:#RobustXmlFeedParser
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'PetitIslands-Examples'
!

RobustXmlFeedParser comment:'A RobustXmlFeedParser is XmlFeedParser, that can handle error within an xml Item element
'
!


!RobustXmlFeedParser methodsFor:'as yet unclassified'!

itemContent
	^ ((simpleElement island ==> #second) star) ==> self elementsToDictionaryBlock
! !

!RobustXmlFeedParser class methodsFor:'documentation'!

version_HG

    ^ '$Changeset: <not expanded> $'
! !