SVN__XMLObject.st
author fm
Wed, 23 Sep 2009 18:48:25 +0200
changeset 58 1c1ae355b452
child 220 b582a6f31d7d
permissions -rw-r--r--
initial checkin

"{ Package: 'cvut:stx/goodies/libsvn' }"

"{ NameSpace: SVN }"

Object subclass:#XMLObject
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'SVN-Private'
!

!XMLObject class methodsFor:'documentation'!

version_SVN
    ^'$Id$'
! !

!XMLObject class methodsFor:'instance creation'!

readFromXml: xmlNode 
    ^ self new readFromXml: xmlNode

    "Created: / 15-03-2008 / 22:22:16 / janfrog"
! !

!XMLObject methodsFor:'instance creation'!

readFromXml: arg 
    "raise an error: must be redefined in concrete subclass(es)"
    
    ^ self subclassResponsibility

    "Created: / 15-03-2008 / 22:32:33 / janfrog"
! !

!XMLObject class methodsFor:'documentation'!

version
    ^ '$Header$'
! !