SyntaxElementVariable.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Fri, 21 Jun 2013 19:05:40 +0100
branchjv
changeset 13173 e9da2324940d
parent 12910 a78434864ebb
child 12978 48139ad13bf6
permissions -rw-r--r--
Merged 06656434532b and 71cb8ce508f0 (branch default - CVS HEAD)

"{ Package: 'stx:libtool' }"

SyntaxElement subclass:#SyntaxElementVariable
	instanceVariableNames:'assigned'
	classVariableNames:''
	poolDictionaries:''
	category:'Interface-CodeView-Syntax'
!

!SyntaxElementVariable class methodsFor:'documentation'!

documentation
"
 Replace 'SyntaxElement', 'NewClass1' and
 the empty string arguments by true values.

 Install (or change) the class by 'accepting',
 either via the menu or the keyboard (usually CMD-A).

 You can also change the category simply by editing
 the categoryString and accepting.

 To be nice to others (and yourself later), do not forget to
 add some documentation; preferably under the classes documentation
 protocol.
 (see the `create documentation stubs' item in the methodList menu;
  switch from instance to class to find this menu item.)

 Notice, that ST/X uses the convention to document the class using
 comment-only class methods (however, ST80 comments are supported and
 can be changed via the class-documentation menu).

"
! !

!SyntaxElementVariable methodsFor:'accessing'!

assigned
    ^ assigned
!

assigned:something
    assigned := something.
! !

!SyntaxElementVariable methodsFor:'queries'!

isVariable
    ^ true
! !

!SyntaxElementVariable class methodsFor:'documentation'!

version
    ^ '$Header: /cvs/stx/stx/libtool/SyntaxElementVariable.st,v 1.1 2013-06-14 14:30:59 cg Exp $'
!

version_CVS
    ^ '$Header: /cvs/stx/stx/libtool/SyntaxElementVariable.st,v 1.1 2013-06-14 14:30:59 cg Exp $'
! !