islands/RobustXmlFeedParser.st
changeset 387 e2b2ccaa4de6
child 454 a9cd5ea7cc36
equal deleted inserted replaced
386:a409905f7f2d 387:e2b2ccaa4de6
       
     1 "{ Package: 'stx:goodies/petitparser/islands' }"
       
     2 
       
     3 XmlFeedParser subclass:#RobustXmlFeedParser
       
     4 	instanceVariableNames:''
       
     5 	classVariableNames:''
       
     6 	poolDictionaries:''
       
     7 	category:'PetitIslands-Examples'
       
     8 !
       
     9 
       
    10 RobustXmlFeedParser comment:'A RobustXmlFeedParser is XmlFeedParser, that can handle error within an xml Item element
       
    11 '
       
    12 !
       
    13 
       
    14 
       
    15 !RobustXmlFeedParser methodsFor:'as yet unclassified'!
       
    16 
       
    17 itemContent
       
    18 	^ ((simpleElement island ==> #second) star) ==> self elementsToDictionaryBlock
       
    19 ! !
       
    20 
       
    21 !RobustXmlFeedParser class methodsFor:'documentation'!
       
    22 
       
    23 version_HG
       
    24 
       
    25     ^ '$Changeset: <not expanded> $'
       
    26 ! !
       
    27