islands/XmlFeedParser.st
changeset 642 77d5fddb6462
parent 454 a9cd5ea7cc36
--- a/islands/XmlFeedParser.st	Sat Mar 19 00:12:47 2016 +0100
+++ b/islands/XmlFeedParser.st	Wed Nov 14 13:01:14 2018 +0100
@@ -10,7 +10,66 @@
 	category:'PetitIslands-Examples'
 !
 
-XmlFeedParser comment:'A XmlFeedParser is Parser of a fake shop feed. Shop feed is a XML file with information about shop products. Shop feed can be malformed (for any reason) the parser will recover from malformed item and will continue on the next valid item.

Instance Variables
	closeItem:		<Object>
	closeName:		<Object>
	closeShoplist:		<Object>
	item:		<Object>
	itemContent:		<Object>
	name:		<Object>
	nameContent:		<Object>
	openItem:		<Object>
	openName:		<Object>
	openShoplist:		<Object>
	shoplist:		<Object>
	shoplistContent:		<Object>
	simpleElement:		<Object>
	stringValue:		<Object>

closeItem
	- xxxxx

closeName
	- xxxxx

closeShoplist
	- xxxxx

item
	- xxxxx

itemContent
	- xxxxx

name
	- xxxxx

nameContent
	- xxxxx

openItem
	- xxxxx

openName
	- xxxxx

openShoplist
	- xxxxx

shoplist
	- xxxxx

shoplistContent
	- xxxxx

simpleElement
	- xxxxx

stringValue
	- xxxxx
'
+XmlFeedParser comment:'A XmlFeedParser is Parser of a fake shop feed. Shop feed is a XML file with information about shop products. Shop feed can be malformed (for any reason) the parser will recover from malformed item and will continue on the next valid item.
+
+Instance Variables
+	closeItem:		<Object>
+	closeName:		<Object>
+	closeShoplist:		<Object>
+	item:		<Object>
+	itemContent:		<Object>
+	name:		<Object>
+	nameContent:		<Object>
+	openItem:		<Object>
+	openName:		<Object>
+	openShoplist:		<Object>
+	shoplist:		<Object>
+	shoplistContent:		<Object>
+	simpleElement:		<Object>
+	stringValue:		<Object>
+
+closeItem
+	- xxxxx
+
+closeName
+	- xxxxx
+
+closeShoplist
+	- xxxxx
+
+item
+	- xxxxx
+
+itemContent
+	- xxxxx
+
+name
+	- xxxxx
+
+nameContent
+	- xxxxx
+
+openItem
+	- xxxxx
+
+openName
+	- xxxxx
+
+openShoplist
+	- xxxxx
+
+shoplist
+	- xxxxx
+
+shoplistContent
+	- xxxxx
+
+simpleElement
+	- xxxxx
+
+stringValue
+	- xxxxx
+'
 !
 
 !XmlFeedParser methodsFor:'grammar'!