Graph::Simple::Node::Cell - An empty filler cell


NAME

Graph::Simple::Node::Cell - An empty filler cell


SYNOPSIS

        use Graph::Simple::Path;
        use Graph::Simple::Edge;
        my $ssl = Graph::Simple::Edge->new(
                label => 'encrypted connection',
                style => '-->',
                color => 'red',
        );
        my $path = Graph::Simple::Path->new(
                type => EDGE_SHORT_E,
        );
        $ssl->add_cell ($path);
        my $src = Graph::Simple::Node->new(
                name => 'source',
        );
        my $dst = Graph::Simple::Node->new(
                name => 'destination',
        );
        $graph = Graph::Simple->new();
        $graph->add_edge($src, $dst, $ssl);
        print $graph->as_ascii();


DESCRIPTION

A Graph::Simple::Group::Cell represents an edge between two (or more) nodes in a simple graph.

Each edge has a direction (from source to destination, or back and forth), plus a style (line width and style), colors etc. It can also have a name, e.g. a text associated with it.


METHODS

error()

        $last_error = $edge->error();
        $cvt->error($error);                    # set new messags
        $cvt->error('');                        # clear error

Returns the last error message, or '' for no error.


SEE ALSO

the Graph::Simple manpage.


AUTHOR

Copyright (C) 2004 - 2005 by Tels http://bloodgate.com.

See the LICENSE file for more details.