Class Structure_Linked_List_Node

Description

The Structure_Linked_List_Node class represents a node in a Structure_Linked_List linked list structure.

Located in /Structure_Linked_List.php (line 412)


	
			
Variable Summary
Method Summary
Variables
Structure_Linked_List_Node $next (line 418)

Next node in the linked list

  • access: protected
Structure_Linked_List_Node $previous (line 424)

Previous node in the linked list

  • access: protected
PEAR::ErrorStack $stack (line 431)

Error stack

  • access: protected
Methods
Constructor __construct (line 441)

Structure_Linked_List_Node constructor

Structure_Linked_List_Node __construct ([ &$link = null], Structure_Linked_List_Node $link)
Destructor __destruct (line 465)

Removes node from the list, adjusting the related nodes accordingly.

This is a problem if the node is the root node for the list. At this point, however, we do not have access to the list itself. Hmm.

void __destruct ()
getErrors (line 520)

Get errors (if any) for this object

Returns the error stack.

  • return: returns the error stack
PEAR_ErrorStack getErrors ()
next (line 486)

Return the next link in the linked list

  • return: next node in the linked list
  • access: public
previous (line 502)

Return the previous link in the linked list

  • return: previous node in the linked list
  • access: public
setNext (line 533)

Sets the pointer for the next link in the linked list to the specified link

  • return: new next node in the linked list
  • access: public
Structure_Linked_List_Node setNext ([ &$link = null], Structure_Linked_List_Node $link)
setPrevious (line 546)

Sets the pointer for the previous link in the linked list to the specified link

  • return: new previous node in the linked list
  • access: public
Structure_Linked_List_Node &setPrevious ([ &$link = null], Structure_Linked_List_Node $link)

Documentation generated on Thu, 24 Aug 2006 10:43:31 -0400 by phpDocumentor 1.3.0