eZ Publish  [4.0]
ezsimpletype.php
Go to the documentation of this file.
00001 <?php
00002 //
00003 // $Id$
00004 //
00005 // Definition of eZSimpleType class
00006 //
00007 // Bård Farstad <bf@ez.no>
00008 // Created on: <14-Feb-2002 10:09:40 bf>
00009 //
00010 // ## BEGIN COPYRIGHT, LICENSE AND WARRANTY NOTICE ##
00011 // SOFTWARE NAME: eZ Publish
00012 // SOFTWARE RELEASE: 4.0.x
00013 // COPYRIGHT NOTICE: Copyright (C) 1999-2008 eZ Systems AS
00014 // SOFTWARE LICENSE: GNU General Public License v2.0
00015 // NOTICE: >
00016 //   This program is free software; you can redistribute it and/or
00017 //   modify it under the terms of version 2.0  of the GNU General
00018 //   Public License as published by the Free Software Foundation.
00019 //
00020 //   This program is distributed in the hope that it will be useful,
00021 //   but WITHOUT ANY WARRANTY; without even the implied warranty of
00022 //   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00023 //   GNU General Public License for more details.
00024 //
00025 //   You should have received a copy of version 2.0 of the GNU General
00026 //   Public License along with this program; if not, write to the Free
00027 //   Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
00028 //   MA 02110-1301, USA.
00029 //
00030 //
00031 // ## END COPYRIGHT, LICENSE AND WARRANTY NOTICE ##
00032 //
00033 
00034 /*!
00035   \class eZSimpleType ezsimpletype.php
00036   \ingroup eZXML
00037   \brief eZSimpleType implements XML schema simple type
00038 */
00039 
00040 //include_once( "lib/ezxml/classes/ezelementtype.php" );
00041 
00042 class eZSimpleType extends eZElementType
00043 {
00044     /*!
00045       Creates a new simple type object
00046     */
00047     function eZSimpleType()
00048     {
00049 
00050     }
00051 
00052     /*!
00053       Returns the type name.
00054     */
00055     function isA()
00056     {
00057         return "simpleType";
00058     }
00059 
00060 
00061 }
00062 
00063 ?>