########################################################################
# $Header: /var/local/cvsroot/4Suite/Ft/Xml/Xslt/ParamElement.py,v 1.8 2004/12/11 21:39:56 jkloth Exp $
"""
Implementation of the XSLT Spec param stylesheet element.
WWW: http://4suite.org/4XSLT e-mail: support@4suite.org
Copyright (c) 1999-2001 Fourthought Inc, USA. All Rights Reserved.
See http://4suite.org/COPYRIGHT for license and copyright information
"""
from Ft.Xml.Xslt.GenericVariable import GenericVariableElement
class ParamElement(GenericVariableElement):
pass
|