SmallSense__SnippetPO.st
author Claus Gittinger
Wed, 26 Feb 2014 19:06:00 +0100
changeset 174 3e08d765d86f
parent 133 bd659b67811c
child 229 c82a22d2153d
permissions -rw-r--r--
sync from current CVS head; fixed comment highlighting for STXEOLRule

"{ Package: 'jv:smallsense' }"

"{ NameSpace: SmallSense }"

PO subclass:#SnippetPO
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'SmallSense-Core-Interface-PO'
!


!SnippetPO methodsFor:'accessing'!

subject:aString
    subject := aString.
    name := aString

    "Created: / 19-10-2013 / 21:43:14 / Jan Vrany <jan.vrany@fit.cvut.cz>"
! !

!SnippetPO methodsFor:'testing'!

isSmallSenseSnippetPO
    ^ true
! !

!SnippetPO class methodsFor:'documentation'!

version_HG

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

version_SVN
    ^ '$Id: SmallSense__SnippetPO.st,v 1.2 2014/02/12 14:49:29 sr Exp $'
! !