Description
parserBase
   |
   --parserInlineTag
	Located in File: /phpDocumentor/InlineTags.inc
Use this element to represent an {@inline tag} like {@link}
Classes extended from parserInlineTag:
 		
	- parserLinkInlineTag
 
		- represents inline links
 
	
		
	- parserSourceInlineTag
 
		- represents inline source tag, used for function/method source
 
	
		
	- parserInheritdocInlineTag
 
		- Represents the inheritdoc inline tag, used by classes/methods/vars to inherit  documentation from the parent class if possible
 
	
		
	- parserIdInlineTag
 
		- Represents the inline {@id} tag for tutorials
 
	
		
	- parserTocInlineTag
 
		- Represents {@toc} for table of contents generation in tutorials
 
	
	
 
Method Detail
Summary:
 Constructor parserInlineTag (line 87)
 
 
parserInlineTag parserInlineTag(
string
$type, string
$value)
	
sets up the tag
		Parameters
	
			- string $type: tag type (example: link)
 
			- string $value: tag value (example: what to link to)
 
		
		
	Info
	
 
 Method Strlen (line 99)
 
 
integer Strlen(
)
	Overridden in child classes as:
		
	- parserSourceInlineTag::Strlen()
 
		- only used to determine blank lines.  {@source} will not be blank, probably
 
	
	
	
get length of the tag
		
	Info
	
			- return - length of the tag
 
			- todo - CS cleanup - rename to strLen for camelCase rule