xquery/trunk/XQuery__FunctionParam.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Tue, 08 Apr 2008 19:47:42 +0000
changeset 0 5057afe1ec87
child 232 9d8fd28b99b0
permissions -rw-r--r--
Initial import from CVS

"{ Package: 'stx:goodies/xmlsuite/xquery' }"

"{ NameSpace: XQuery }"

Object subclass:#FunctionParam
	instanceVariableNames:'name type'
	classVariableNames:''
	poolDictionaries:''
	category:'XQuery-Functions'
!


!FunctionParam methodsFor:'accessing'!

name
    ^ name

    "Created: / 28-12-2006 / 14:10:44 / janfrog"
!

name:something
    name := something.

    "Created: / 28-12-2006 / 14:10:44 / janfrog"
!

type
    ^ type

    "Created: / 28-12-2006 / 14:10:44 / janfrog"
!

type:something
    type := something.

    "Created: / 28-12-2006 / 14:10:44 / janfrog"
! !

!FunctionParam class methodsFor:'documentation'!

version
    ^ '$Header: /opt/data/cvs/stx/goodies/xmlsuite/xquery/XQuery__FunctionParam.st,v 1.1 2007-01-03 08:52:38 vranyj1 Exp $'
! !