| Package | org.granite.reflect |
| Interface | public interface IMember |
| Implementors | DynamicProperty, Member |
Member and DynamicProperty
classes (mainly a marker).
See also
| Property | Defined by | ||
|---|---|---|---|
| propertyKey : String [read-only]
The String representation of this member (field or method qName, key of a
dynamic property or dictionary, index of an array, etc.)
| IMember | ||
| Method | Defined by | ||
|---|---|---|---|
|
isAccessor():Boolean
Checks if this member is an accessor (get/set) field.
| IMember | ||
|
isConstant():Boolean
Checks if this member is a constant field.
| IMember | ||
|
isConstructor():Boolean
Checks if this member is a constructor.
| IMember | ||
|
isDynamicProperty():Boolean
Checks if this member is a dynamic property (always
false for
Member, always true for DynamicProperty). | IMember | ||
|
isMethod():Boolean
Checks if this member is a method.
| IMember | ||
|
isReadable():Boolean
Checks if this member is readable (fields only).
| IMember | ||
|
isStatic():Boolean
Checks if this member is static.
| IMember | ||
|
isVariable():Boolean
Checks if this member is a variable field.
| IMember | ||
|
isWriteable():Boolean
Checks if this member is writeable (fields only).
| IMember | ||
| propertyKey | property |
propertyKey:String [read-only]The String representation of this member (field or method qName, key of a dynamic property or dictionary, index of an array, etc.)
Implementation public function get propertyKey():String
| isAccessor | () | method |
public function isAccessor():BooleanChecks if this member is an accessor (get/set) field.
ReturnsBoolean — true if this member is an accessor, false
otherwise.
|
| isConstant | () | method |
public function isConstant():BooleanChecks if this member is a constant field.
ReturnsBoolean — true if this member is a constant, false
otherwise.
|
| isConstructor | () | method |
public function isConstructor():BooleanChecks if this member is a constructor.
ReturnsBoolean — true if this member is a constructor, false
otherwise.
|
| isDynamicProperty | () | method |
public function isDynamicProperty():Boolean
Checks if this member is a dynamic property (always false for
Member, always true for DynamicProperty).
Boolean — true if this member is a dynamic property, false
otherwise.
|
See also
| isMethod | () | method |
public function isMethod():BooleanChecks if this member is a method.
ReturnsBoolean — true if this member is a method, false
otherwise.
|
| isReadable | () | method |
public function isReadable():BooleanChecks if this member is readable (fields only).
ReturnsBoolean — true if this member is readable, false
otherwise.
|
| isStatic | () | method |
public function isStatic():BooleanChecks if this member is static.
ReturnsBoolean — true if this member is static, false
otherwise.
|
| isVariable | () | method |
public function isVariable():BooleanChecks if this member is a variable field.
ReturnsBoolean — true if this member is a variable, false
otherwise.
|
| isWriteable | () | method |
public function isWriteable():BooleanChecks if this member is writeable (fields only).
ReturnsBoolean — true if this member is writeable, false
otherwise.
|