Subversion-Projekte lars-tiefland.content-management

Revision

Blame | Letzte Änderung | Log anzeigen | RSS feed

<?php
// autogenerated file 05.05.2008 16:30
// $Id: EbatNsCsSetExt_LabelType.php 4066 2011-11-03 08:13:59Z tiefland $
// $Log: $
//
//
require_once 'EbatNs_ComplexType.php';

/**
 *  
 *
 *
 */
class EbatNsCsSetExt_LabelType extends EbatNs_ComplexType
{
        /**
         * @var string
         */
        protected $Name;

        /**
         * @return string
         */
        function getName()
        {
                return $this->Name;
        }
        /**
         * @return void
         * @param string $value 
         */
        function setName($value)
        {
                $this->Name = $value;
        }
        /**
         * @return 
         */
        function __construct()
        {
                parent::__construct('EbatNsCsSetExt_LabelType', 'http://www.w3.org/2001/XMLSchema');
                $this->_elements = array_merge($this->_elements,
                        array(
                                'Name' =>
                                array(
                                        'required' => true,
                                        'type' => 'string',
                                        'nsURI' => 'http://www.w3.org/2001/XMLSchema',
                                        'array' => false,
                                        'cardinality' => '1..1'
                                )
                        ));
        $this->_attributes = array_merge($this->_attributes,
                array(
                        'visible' =>
                        array(
                                'name' => 'visible',
                                'type' => 'boolean',
                                'use' => 'required'
                        ),
                        'align' =>
                        array(
                                'name' => 'align',
                                'type' => 'string',
                                'use' => 'required'
                        ),
                        'color' =>
                        array(
                                'name' => 'color',
                                'type' => 'string',
                                'use' => 'required'
                        ),
                        'face' =>
                        array(
                                'name' => 'face',
                                'type' => 'string',
                                'use' => 'required'
                        ),
                        'size' =>
                        array(
                                'name' => 'size',
                                'type' => 'string',
                                'use' => 'required'
                        ),
                        'bold' =>
                        array(
                                'name' => 'bold',
                                'type' => 'boolean',
                                'use' => 'required'
                        )
                ));

        }
}
?>