Packagepotomac.bundle
Classpublic class Method
InheritanceMethod Inheritance Object

Method represents a method on which an extension was declared.



Public Properties
 PropertyDefined By
  arguments : Array
[read-only] An array of Argument objects representing arguments for this method.
Method
  name : String
[read-only] The method name.
Method
  returnType : String
[read-only] The fully qualified return type of the method.
Method
Public Methods
 MethodDefined By
  
Method(name:String, functionSignature:String, extension:Extension)
Callers should not construct Method instances.
Method
Property Detail
argumentsproperty
arguments:Array  [read-only]

An array of Argument objects representing arguments for this method.


Implementation
    public function get arguments():Array
nameproperty 
name:String  [read-only]

The method name.


Implementation
    public function get name():String
returnTypeproperty 
returnType:String  [read-only]

The fully qualified return type of the method.


Implementation
    public function get returnType():String
Constructor Detail
Method()Constructor
public function Method(name:String, functionSignature:String, extension:Extension)

Callers should not construct Method instances. They are available via Extension.

Parameters
name:String
 
functionSignature:String
 
extension:Extension