PHP Class ezcWorkflowVisitorVisualization, Workflow

accept( $visitor ); print $visitor; ?>
Inheritance: implements ezcWorkflowVisitor
Show file Open project: zetacomponents/workflow

Protected Properties

Property Type Description
$edges Holds all the edges of the graph.
$nodes Holds the displayed strings for each of the nodes.
$properties array(string=>mixed) Properties.
$workflowName string Holds the name of the workflow.

Public Methods

Method Description
__construct ( ) Constructor.
__get ( string $propertyName ) Property get access.
__isset ( string $propertyName ) : boolean Property isset access.
__set ( string $propertyName, string $propertyValue ) Property set access.
__toString ( ) : boolean Returns a the contents of a graphviz .dot file.

Protected Methods

Method Description
doVisit ( ezcWorkflowVisitable $visitable ) Perform the visit.

Method Details

__construct() public method

Constructor.
public __construct ( )

__get() public method

Property get access.
public __get ( string $propertyName )
$propertyName string

__isset() public method

Property isset access.
public __isset ( string $propertyName ) : boolean
$propertyName string
return boolean

__set() public method

Property set access.
public __set ( string $propertyName, string $propertyValue )
$propertyName string
$propertyValue string

__toString() public method

Returns a the contents of a graphviz .dot file.
public __toString ( ) : boolean
return boolean

doVisit() protected method

Perform the visit.
protected doVisit ( ezcWorkflowVisitable $visitable )
$visitable ezcWorkflowVisitable

Property Details

$edges protected property

Holds all the edges of the graph.
protected $edges

$nodes protected property

Holds the displayed strings for each of the nodes.
protected $nodes

$properties protected property

Properties.
protected array(string=>mixed) $properties
return array(string=>mixed)

$workflowName protected property

Holds the name of the workflow.
protected string $workflowName
return string