/**
  * Constructor
  *
  * @param $typeName string Allowed primitive types are
  *  'integer', 'string', 'float' and 'boolean'.
  */
 function PrimitiveTypeDescription($typeName)
 {
     parent::TypeDescription($typeName);
 }
 /**
  * Constructor
  *
  * @param $typeName string a fully qualified class name.
  */
 function ClassTypeDescription($typeName)
 {
     parent::TypeDescription($typeName);
 }
Exemplo n.º 3
0
 /**
  * Constructor
  *
  * @param $typeName string Allowed primitive types are
  *  'integer', 'string', 'float' and 'boolean'.
  */
 function XMLTypeDescription($typeName)
 {
     parent::TypeDescription($typeName);
 }
 /**
  * Constructor
  *
  * @param $typeName string Allowed primitive types are
  *  'integer', 'string', 'float' and 'boolean'.
  */
 function __construct($typeName)
 {
     parent::__construct($typeName);
 }
Exemplo n.º 5
0
 /** @return string */
 public function getTypeString()
 {
     return $this->typeDescription->__toString();
 }