/**
  * Create a method resource(a class member). For now this method is assumed to have public access.
  */
 public static function CreateMethod($className, $methodName, $methodReturnType, $namespaceName = '\\', $comment = '')
 {
     $method = new Triumph_DetectedTag();
     $method->MakeMethod($className, $methodName, $methodReturnType, $namespaceName, $comment);
     return $method;
 }