PropertyInfo
private class
system.reflection.PropertyInfo
Description
Represents information about a property (getter/setter) on a Type.
API overview
Constructor
PropertyInfo
()
Functions
Public functions
| getGetMethod (): MethodInfo |
native Gets the getter method portion of the property |
| getSetMethod (): MethodInfo |
native Gets the setter method portion of the property |
Constructor
PropertyInfo ()
Functions
getDeclaringType
(): Type
Inherited from MemberInfo
native
Gets the Type that the MemberInfo belongs to.
Returns
| Type | Type that the member info belongs to. |
getFullTypeName
(): String
Inherited from Object
native
Gets the fully qualified type name of the Object. The fully qualified type name includes the package of the type.
Returns
| String | fully qualified type name of the Object. |
getGetMethod (): MethodInfo
native
Gets the getter method portion of the property.
Returns
| MethodInfo | The MethodInfo that represents the getter method of the property. |
getMemberType
(): Type
Inherited from MemberInfo
native
Gets the Type of the Member for example getMemberInfo on:
public var x:Number;
would return the System.Number type
Returns
| Type | Type of the member declaration |
getMetaInfo
(
name: String
): MetaInfo
Inherited from MemberInfo
native
Gets the MetaInfo for the specified Metadata tag name.
Parameters
| name: String | Name of the metadata tag to lookup. |
Returns
| MetaInfo | MetaInfo for the specified Metadata tag name, null if the name does not exist on the MemberInfo. |
getName
(): String
Inherited from MemberInfo
native
Gets the name of the MemberInfo.
Returns
| String | Name of the MemberInfo. |
getOrdinal
(): Number
Inherited from MemberInfo
native
Gets the native ordinal for a MemberInfo.
Returns
| Number | 0 for no native ordinal, otherwise the native ordinal. |
getSetMethod (): MethodInfo
native
Gets the setter method portion of the property.
Returns
| MethodInfo | The MethodInfo that represents the setter method of the property. |
getType
(): Type
Inherited from Object
native
Gets the Type that describes the Object.
Returns
| Type | The Type that describes the object. |
getTypeInfo
(): Type
Inherited from MemberInfo
native
Returns the Type that represents the type that the member is or returns.
Returns
| Type | Type info for MemberInfos type. |