Method |
Description |
|
addConstant ( &$constant ) |
Add a constant to this class. |
|
addField ( &$field ) |
Add a field to this class. |
|
addMethod ( &$method ) |
Add a method to this class. |
|
classDoc ( $name, &$root, $filename, $lineNumber, $sourcePath ) |
Constructor |
|
constants ( ) : FieldDoc[] |
Return constants in this class. |
|
constructor ( ) : MethodDoc |
Return constructor for this class. |
|
destructor ( ) : MethodDoc |
Return destructor for this class. |
|
fieldNamed ( $fieldName ) : FieldDoc |
Return a field in this class. |
|
fields ( ) : FieldDoc[] |
Return fields in this class. |
|
interfaceNamed ( $interfaceName ) : ClassDoc |
Return an interface in this class. |
|
interfaces ( ) : ClassDoc[] |
Return interfaces implemented by this class or interfaces extended by this interface. |
|
isAbstract ( ) : boolean |
Return true if this class is abstract. |
|
isClass ( ) : boolean |
Is this construct a class. Note: interfaces are not classes. |
|
isException ( ) : boolean |
Is this construct an exception. |
|
isInterface ( ) : boolean |
Return true if this element is an interface. |
|
isOrdinaryClass ( ) : boolean |
Is this construct an ordinary class (not an interface or an exception). |
|
isTrait ( ) : boolean |
Return true if this element is a trait. |
|
mergeSuperClassData ( $superClassName = NULL ) |
Merge the details of the superclass with this class. |
|
methodNamed ( $methodName ) : MethodDoc |
Return a method in this class. |
|
methods ( $regularOnly = FALSE ) : MethodDoc[] |
Return the methods in this class. |
|
subclassOf ( $cd ) : boolean |
Test whether this class is a subclass of the specified class. |
|
subclasses ( ) : classDoc[] |
Return the known subclasses of this class |
|
superclass ( ) : ClassDoc |
Return the superclass of this class. |
|
traitNamed ( $traitName ) : ClassDoc |
Return an interface in this class. |
|
traits ( ) : ClassDoc[] |
Return traits used by this class |
|