Squeak
  links to this page:    
View this PageEdit this PageUploads to this PageHistory of this PageTop of the SwikiRecent ChangesSearch the SwikiHelp Guide
XMLElement
Last updated at 9:47 am UTC on 2 January 2016
see also Writing and reading an XML file

XMLNodeWithElements subclass: #XMLElement
	instanceVariableNames: 'name attributes'
	classVariableNames: ''
	poolDictionaries: ''
	category: 'XML-Parser'


XMLNode subclass: #XMLNodeWithElements
	instanceVariableNames: 'elementsAndContents uri namespace parent'
	classVariableNames: ''
	poolDictionaries: ''
	category: 'XML-Parser'


elementsAndContents is an OrderedCollection

Object subclass: #XMLNode
	instanceVariableNames: ''
	classVariableNames: 'CanonicalTable'
	poolDictionaries: ''
	category: 'XML-Parser'



In Pharo



XMLNodeWithElements subclass: #XMLElement
	instanceVariableNames: 'name localName attributes namespaceScope'
	classVariableNames: ''
	category: 'XML-Parser-DOM'


XMLNodeWithChildren subclass: #XMLNodeWithElements
	instanceVariableNames: 'configuration'
	classVariableNames: ''
	category: 'XML-Parser-DOM'



XMLNode subclass: #XMLNodeWithChildren
	instanceVariableNames: 'nodes'
	classVariableNames: ''
	category: 'XML-Parser-DOM'



Object subclass: #XMLNode
	instanceVariableNames: 'parent'
	classVariableNames: ''
	category: 'XML-Parser-DOM'