/**
  * Constructor
  *
  * @param $typeName string a fully qualified class name.
  */
 function ClassTypeDescription($typeName)
 {
     parent::TypeDescription($typeName);
 }
 /**
  * Constructor
  *
  * @param $typeName string Allowed primitive types are
  *  'integer', 'string', 'float' and 'boolean'.
  */
 function PrimitiveTypeDescription($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);
 }