package Embedix::ECD::Autovar; use strict; use vars qw(@ISA); @ISA = qw(Embedix::ECD); # I imagine different types of ECD nodes may have different attributes. # I hope I'm right. # #_______________________________________ sub toString { my $self = shift; my $opt = $self->getFormatOptions(@_); return $opt->{space} . "name . ">\n" . $self->attributeToString($opt) . # for the attributes $self->SUPER::toString(@_) . # for the children $opt->{space} . "\n" } 1; __END__ =head1 NAME Embedix::ECD::Autovar - an object for AUTOVAR nodes =head1 SYNOPSIS my $ecd = Embedix::ECD::Autovar->new(); =head1 DESCRIPTION Embedix::ECD::Autovar is a subclass of Embedix::ECD for representing AUTOVAR nodes. It differs from its superclass in the following ways. =head2 Differences =over 4 =item it doesn't (yet) except in name =back =head1 AUTHOR John BEPPU =head1 SEE ALSO Embedix::ECD(3pm) =cut # $Id: Autovar.pm,v 1.1 2001/01/19 00:26:38 beppu Exp $