Example #1
0
 /**
  * <MethodDescription>
  *
  * @param mixed <description>
  *
  * @return string <description>
  */
 function type_to_name_wns(&$type)
 {
     return sprintf('%s:%s', Studip_Ws_Type::is_complex_type($type) ? 'tns' : 'xsd', $this->type_to_name($type));
 }
Example #2
0
 /**
  * <MethodDescription>
  *
  * @param type <description>
  *
  * @return type <description>
  */
 function is_primitive_type($type)
 {
     return !Studip_Ws_Type::is_complex_type($type);
 }