| UMMF documentation | Contained in the UMMF distribution. |
__validate_type__typecheckisaCommentisaFoundation__Core__Comment__model_name __isAbstract__tangram_schema___initialize__initialize__createnameset_namecount_nameannotatedElementset_annotatedElementadd_annotatedElementremove_annotatedElementclear_annotatedElementcount_annotatedElement
UMMF::UML_1_5::Foundation::Core::Comment --
1.5
name : UMMF::UML_1_5::Foundation::Data_Types::String private1changeableinstanceunorderedSet::Objectcomment : THIS 0..* <---> annotatedElement : UMMF::UML_1_5::Foundation::Core::ModelElement 0..*0..*changeableinstancenonepublicSet::Object__validate_typeUMMF::UML_1_5::Foundation::Core::Comment->__validate_type($value);
Returns true if $value is a valid representation of UMMF::UML_1_5::Foundation::Core::Comment.
__typecheckUMMF::UML_1_5::Foundation::Core::Comment->__typecheck($value, $msg);
Calls confess() with $msg if <UMMF::UML_1_5::Foundation::Core::Comment-__validate_type($value)>> is false.
isaCommentReturns true if receiver is a UMMF::UML_1_5::Foundation::Core::Comment. Other receivers will return false.
isaFoundation__Core__CommentReturns true if receiver is a UMMF::UML_1_5::Foundation::Core::Comment.
Other receivers will return false.
This is the fully qualified version of the isaComment method.
__model_name my $name = $obj_or_package->__model_name;
Returns the UML Model name ('Foundation::Core::Comment') for an object or package of
this Classifier.
__isAbstract$package->__isAbstract;
Returns 0.
__tangram_schemamy $tangram_schema $obj_or_package->__tangram_schema
Returns a HASH ref that describes this Classifier for Tangram.
___initializeInitialize all Attributes and AssociationEnds in a instance of this Classifier. Does not initalize slots in its Generalizations.
See also: __initialize.
__initializeInitialize all slots in this Classifier and all its Generalizations.
See also: ___initialize.
__createCalls all <<create>> Methods for this Classifier and all Generalizations.
See also: ___create.
namemy $val = $obj->name;
Returns the UMMF::UML_1_5::Foundation::Data_Types::String value of Attribute name.
set_name$obj->set_name($val);
Sets the value of Attribute name.
$val must be of type UMMF::UML_1_5::Foundation::Data_Types::String or undef.
Returns $obj.
count_name$obj->count_name;
Returns the number of elements (0 or 1) in name.
annotatedElementmy @val = $obj->annotatedElement; my $ary_val = $obj->annotatedElement;
Returns the AssociationEnd annotatedElement values of type UMMF::UML_1_5::Foundation::Core::ModelElement.
In array context, returns all the objects in the Association.
In scalar context, returns an array ref of all the objects in the Association.
set_annotatedElement$obj->set_annotatedElement(@val);
Sets the AssociationEnd annotatedElement value.
Elements of @val must of type UMMF::UML_1_5::Foundation::Core::ModelElement.
Returns $obj.
add_annotatedElement$obj->add_annotatedElement(@val);
Adds AssociationEnd annotatedElement values.
Elements of @val must of type UMMF::UML_1_5::Foundation::Core::ModelElement.
Returns $obj.
remove_annotatedElement$obj->remove_annotatedElement(@val);
Removes the AssociationEnd annotatedElement values @val.
Elements of @val must of type UMMF::UML_1_5::Foundation::Core::ModelElement.
Returns $obj.
clear_annotatedElement$obj->clear_annotatedElement;
Clears the AssociationEnd annotatedElement links to UMMF::UML_1_5::Foundation::Core::ModelElement.
Returns $obj.
count_annotatedElement$obj->count_annotatedElement;
Returns the number of elements associated with annotatedElement.
END OF DOCUMENT
| UMMF documentation | Contained in the UMMF distribution. |
# -*- perl -*- # DO NOT EDIT - This file is generated by UMMF; http://ummf.sourceforge.net # From template: $Id: Perl.txt,v 1.77 2006/05/14 01:40:03 kstephens Exp $ package UMMF::UML_1_5::Foundation::Core::Comment; #use 5.6.1; use strict; use warnings; ################################################################# # Version # our $VERSION = do { my @r = (q{1.5} =~ /\d+/g); sprintf "%d." . "%03d" x $#r, @r }; ################################################################# # Documentation #
################################################################# # Dependencies # use Carp qw(croak confess); use Set::Object 1.05; use Class::Multimethods 1.70; use Data::Dumper; use Scalar::Util qw(weaken); use UMMF::UML_1_5::__ObjectBase qw(:__ummf_array); ################################################################# # Generalizations # use base qw( UMMF::UML_1_5::Foundation::Core::ModelElement ); ################################################################# # Exports # our @EXPORT_OK = qw( ); our %EXPORT_TAGS = ( 'all' => \@EXPORT_OK ); ################################################################# # Validation #
sub __validate_type($$) { my ($self, $x) = @_; no warnings; UNIVERSAL::isa($x, 'UMMF::UML_1_5::Foundation::Core::Comment') ; }
sub __typecheck { my ($self, $x, $msg) = @_; confess("typecheck: $msg: type '" . 'UMMF::UML_1_5::Foundation::Core::Comment' . ": value '$x'") unless __validate_type($self, $x); }
sub isaComment { 1 }
sub isaFoundation__Core__Comment { 1 } ################################################################# # Introspection #
sub __model_name { 'Foundation::Core::Comment' }
sub __isAbstract { 0; } my $__tangram_schema;
sub __tangram_schema { my ($self) = @_; $__tangram_schema ||= { 'classes' => [ 'UMMF::UML_1_5::Foundation::Core::Comment' => { 'table' => 'Foundation__Core__Comment', 'abstract' => 0, 'slots' => { # Attributes 'name' => { 'type_impl' => 'ref', 'class' => 'UMMF::UML_1_5::Foundation::Data_Types::String', 'col' => 'name', } , # Associations 'annotatedElement' => { 'type_impl' => 'set', 'class' => 'UMMF::UML_1_5::Foundation::Core::ModelElement', 'table' => 'Foundation__Core__Comment_AnnotatedElement', 'item' => 'annotatedElement', 'coll' => 'comment', } , }, 'bases' => [ 'UMMF::UML_1_5::Foundation::Core::ModelElement', ], 'sql' => { }, }, ], 'sql' => { # Note Tangram::Ref::get_exporter() has # "UPDATE $table SET $self->{col} = $refid WHERE id = $id", # The id_col is hard-coded, # Thus id_col will not work. #'id_col' => '__sid', #'class_col' => '__stype', }, # 'set_id' => sub { } # 'get_id' => sub { } }; } ################################################################# # Class Attributes # ################################################################# # Class Associations # ################################################################# # Initialization #
sub ___initialize { my ($self) = @_; # Attributes # Attribute name if ( exists $self->{'name'} ) { my $x = $self->{'name'}; $self->{'name'} = undef; $self->set_name($x); } else { } # Associations # AssociationEnd # comment 0..* # <--> # annotatedElement 0..* UMMF::UML_1_5::Foundation::Core::ModelElement. if ( defined $self->{'annotatedElement'} ) { my $x = $self->{'annotatedElement'}; $self->{'annotatedElement'} = Set::Object->new(); $self->set_annotatedElement(@$x); } $self; } my $__initialize_use;
sub __initialize { my ($self) = @_; # $DB::single = 1; unless ( ! $__initialize_use ) { $__initialize_use = 1; $self->__use('UMMF::UML_1_5::Foundation::Core::Element'); $self->__use('UMMF::UML_1_5::Foundation::Core::ModelElement'); } $self->UMMF::UML_1_5::Foundation::Core::Comment::___initialize; $self->UMMF::UML_1_5::Foundation::Core::Element::___initialize; $self->UMMF::UML_1_5::Foundation::Core::ModelElement::___initialize; $self; }
sub __create { my ($self, @args) = @_; # $DB::single = 1; $self->UMMF::UML_1_5::Foundation::Core::Comment::___create(@args); $self->UMMF::UML_1_5::Foundation::Core::Element::___create(); $self->UMMF::UML_1_5::Foundation::Core::ModelElement::___create(); $self; } ################################################################# # Attributes #
################################################################# # Attribute name # type = UMMF::UML_1_5::Foundation::Data_Types::String # multiplicity = 1 # ordering = unordered # ownerScope = instance # initialValue =
sub name ($) { my ($self) = @_; ; my $val = $self->{'name'}; ; $val; }
sub set_name ($$) { my ($self, $val) = @_; ; if ( defined $val ) { ; } $self->{'name'} = $val ; ; $self; }
sub count_name ($) { my ($self) = @_; ; my $val = $self->{'name'}; ; defined $val ? 1 : 0; } ################################################################# # Association #
################################################################# # AssociationEnd comment <---> annotatedElement # type = UMMF::UML_1_5::Foundation::Core::ModelElement # multiplicity = 0..* # ordering =
sub annotatedElement ($) { my ($self) = @_; my $x = $self->{'annotatedElement'}; # confess("Container for annotatedElement $x is not a blessed ref: " . Data::Dumper->new([ $self ], [qw($self)])->Maxdepth(2)->Dump()) if $x && ref($x) !~ /::/; wantarray ? ($x ? $x->members() : ()) : [ $x ? $x->members() : () ]; }
sub set_annotatedElement ($@) { my ($self, @val) = @_; $self->clear_annotatedElement; $self->add_annotatedElement(@val); }
sub add_annotatedElement ($@) { my ($self, @val) = @_; my $x = $self->{'annotatedElement'} ||= Set::Object->new(); my $old; # Place holder for other MACRO. for my $val ( @val ) { # Recursion lock next if $x->includes($val); $self->__use('UMMF::UML_1_5::Foundation::Core::ModelElement')->__typecheck($val, "UMMF::UML_1_5::Foundation::Core::Comment.annotatedElement"); # Recursion lock $x->insert($val); # weaken? # Remove and add associations with other ends. $old->remove_comment($self) if $old; $val->add_comment($self) if $val; } $self; }
sub remove_annotatedElement ($@) { my ($self, @val) = @_; my $x = $self->{'annotatedElement'} ||= Set::Object->new(); for my $old ( @val ) { # Recursion lock next unless $x->includes($old); my $val = $old; $self->__use('UMMF::UML_1_5::Foundation::Core::ModelElement')->__typecheck($val, "UMMF::UML_1_5::Foundation::Core::Comment.annotatedElement"); # Recursion lock $x->remove($old); $val = undef; # Remove associations with other ends. $old->remove_comment($self) if $old; $val->add_comment($self) if $val; ; } $self; }
sub clear_annotatedElement ($) { my ($self) = @_; my $x = $self->{'annotatedElement'} ||= Set::Object->new(); my $val; # Place holder for other MACRO. $self->{'annotatedElement'} = Set::Object->new(); # Recursion lock for my $old ( $x->members() ) { # Recursion lock # Remove associations with other ends. $old->remove_comment($self) if $old; $val->add_comment($self) if $val; ; } $self; }
sub count_annotatedElement ($) { my ($self) = @_; my $x = $self->{'annotatedElement'}; defined $x ? $x->size : 0; } # End of Class Comment
############################################################################ 1; # is true! ############################################################################ ### Keep these comments at end of file: kstephens@users.sourceforge.net 2003/04/06 ### ### Local Variables: ### ### mode:perl ### ### perl-indent-level:2 ### ### perl-continued-statement-offset:0 ### ### perl-brace-offset:0 ### ### perl-label-offset:0 ### ### End: ###