Child classes:
- parserInlineTag
- Use this element to represent an {@inline tag} like {@link}
- parserStringWithInlineTags
- Used to represent strings that contain inline tags, so that they can be properly parsed at link time
- parserElement
- all elements except parserPackagePage descend from this abstract class
Inherited Variables
Inherited Constants
Inherited Methods
Class Details
Base class for all elements
Tags:
- author - Gregory Beaver <[email protected]>
- version - Release: @VER@
- copyright - 2002-2008 Gregory Beaver
- link - http://pear.php.net/PhpDocumentor
- link - http://www.phpdoc.org
- todo - CS cleanup - change package to PhpDocumentor
- abstract -
- since - 1.0rc1
- license - LGPL
[ Top ]
Class Variables
$type = 'base'
[line 717]
Type is used by many functions to skip the hassle of if
phpDocumentor_get_class($blah) == 'parserBlah'... always base
Type: string
Overrides:
[ Top ]
$value = false
[line 723]
set to different things by its descendants
Tags:
- abstract -
Type: mixed
Overrides:
[ Top ]
Class Methods
getType
[ Top ]
getValue
mixed getValue(
)
[line 752]
gets the value
Tags:
- return - get the value of this element (element-dependent)
Parameters:
[ Top ]
setValue
void setValue(
mixed
$value)
[line 742]
sets the given value
Parameters:
- mixed $value - set the value of this element
[ Top ]