Kurt Stephens > UMMF > UMMF::Export

Download:
UMMF-1.02.tar.gz

Dependencies

Annotate this POD

CPAN RT

Open  0
Report a bug
Module Version: 1.022   Source  

NAME ^

UMMF::Export - Base exporter class for UMMF::Core::MetaModel;

SYNOPSIS ^

  use base qw(UMMF::Export::...);
  my $code = UMMF::Export::...->new(...);
  $code->export_Model($model);

DESCRIPTION ^

This package allow UML models and meta-models to be exported, to XMI or other implementation languages.

USAGE ^

EXPORT ^

None exported.

AUTHOR ^

Kurt Stephens, kstephens@users.sourceforge.net 2003/04/15

SEE ALSO ^

UMMF::Core::MetaModel

VERSION ^

$Revision: 1.22 $

METHODS ^

attribute

Returns a list of Attributes of a Classifier.

operation

Returns a list of Operations of a Classifier.

method

Returns a list of Methods of a Classifier.

enumerationLiteral

Returns a list of EnumerationLiterals of an Enumeration.

package_name_filter ^

  $name = $self->package_name_filter($obj, $name);

Transforms a ModelElement's $obj name into something appropriate for the exporter's target language.

Subclasses may override this.

identifer_name_filter ^

  $name = $self->package_name_filter($obj, $name);

Transforms a ModelElement's $obj name into something appropriate for the exporter's target language.

Subclasses may override this.