The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
# -*- 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::MOF_1_3::Model::Operation;

#use 5.6.1;
use strict;
use warnings;

#################################################################
# Version
#

our $VERSION = do { my @r = (q{1.3} =~ /\d+/g); sprintf "%d." . "%03d" x $#r, @r };


#################################################################
# Documentation
#

=head1 NAME

UMMF::MOF_1_3::Model::Operation -- 

=head1 VERSION

1.3

=head1 SYNOPSIS

=head1 DESCRIPTION 

=head1 USAGE

=head1 EXPORT

=head1 METATYPE

L<UMMF::UML_1_5::Foundation::Core::Class|UMMF::UML_1_5::Foundation::Core::Class>

=head1 SUPERCLASSES

L<UMMF::MOF_1_3::Model::BehavioralFeature|UMMF::MOF_1_3::Model::BehavioralFeature>




=head1 ATTRIBUTES


=head2 C<isQuery> : UMMF::MOF_1_3::Model::Boolean 


=over 4

=item metatype = L<UMMF::UML_1_5::Foundation::Core::Attribute|UMMF::UML_1_5::Foundation::Core::Attribute>

=item type = L<UMMF::MOF_1_3::Model::Boolean|UMMF::MOF_1_3::Model::Boolean>

=item visibility = C<private>

=item multiplicity = C<1>

=item changeability = C<changeable>

=item targetScope = C<instance>

=item ordering = C<unordered>

=item initialValue = I<UNSPECIFIED>

=item container_type = C<Set::Object>

=back



=head1 ASSOCIATIONS


=head2 C<operation> : I<THIS> C<0..*> E<lt>---E<gt>  C<except> : UMMF::MOF_1_3::Model::Exception C<0..*>



=over 4

=item metatype = L<UMMF::UML_1_5::Foundation::Core::AssociationEnd|UMMF::UML_1_5::Foundation::Core::AssociationEnd>

=item type = L<UMMF::MOF_1_3::Model::Exception|UMMF::MOF_1_3::Model::Exception>

=item multiplicity = C<0..*>

=item changeability = C<changeable>

=item targetScope = C<instance>

=item ordering = C<ordered>

=item isNavigable = C<1>

=item aggregation = C<none>

=item visibility = C<public>

=item container_type = C<ARRAY>

=back



=head1 METHODS

=cut



#################################################################
# 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::MOF_1_3::__ObjectBase qw(:__ummf_array);


#################################################################
# Generalizations
#

use base qw(
  UMMF::MOF_1_3::Model::BehavioralFeature



);


#################################################################
# Exports
#

our @EXPORT_OK = qw(
);
our %EXPORT_TAGS = ( 'all' => \@EXPORT_OK );





#################################################################
# Validation
#


=head2 C<__validate_type>

  UMMF::MOF_1_3::Model::Operation->__validate_type($value);

Returns true if C<$value> is a valid representation of L<UMMF::MOF_1_3::Model::Operation|UMMF::MOF_1_3::Model::Operation>.

=cut
sub __validate_type($$)
{
  my ($self, $x) = @_;

  no warnings;

  UNIVERSAL::isa($x, 'UMMF::MOF_1_3::Model::Operation')  ;
}


=head2 C<__typecheck>

  UMMF::MOF_1_3::Model::Operation->__typecheck($value, $msg);

Calls C<confess()> with C<$msg> if C<<UMMF::MOF_1_3::Model::Operation->__validate_type($value)>> is false.

=cut
sub __typecheck
{
  my ($self, $x, $msg) = @_;

  confess("typecheck: $msg: type '" . 'UMMF::MOF_1_3::Model::Operation' . ": value '$x'")
    unless __validate_type($self, $x);
}


=head2 C<isaOperation>


Returns true if receiver is a L<UMMF::MOF_1_3::Model::Operation|UMMF::MOF_1_3::Model::Operation>.
Other receivers will return false.

=cut
sub isaOperation { 1 }


=head2 C<isaModel__Operation>


Returns true if receiver is a L<UMMF::MOF_1_3::Model::Operation|UMMF::MOF_1_3::Model::Operation>.
Other receivers will return false.
This is the fully qualified version of the C<isaOperation> method.

=cut
sub isaModel__Operation { 1 }


#################################################################
# Introspection
#

=head2 C<__model_name> 

  my $name = $obj_or_package->__model_name;

Returns the UML Model name (C<'Model::Operation'>) for an object or package of
this Classifier.

=cut
sub __model_name { 'Model::Operation' }



=head2 C<__isAbstract>

  $package->__isAbstract;

Returns C<0>.

=cut
sub __isAbstract { 0; }


my $__tangram_schema;
=head2 C<__tangram_schema>

  my $tangram_schema $obj_or_package->__tangram_schema

Returns a HASH ref that describes this Classifier for Tangram.

See L<UMMF::Export::Perl::Tangram|UMMF::Export::Perl::Tangram>

=cut
sub __tangram_schema
{
  my ($self) = @_;

  $__tangram_schema ||=
  {
   'classes' =>
   [
     'UMMF::MOF_1_3::Model::Operation' =>
     {
       'table' => 'Model__Operation',
       'abstract' => 0,
       'slots' => 
       { 
	 # Attributes
	 	       'isQuery'
       => {
	 'type_impl' => 'string',
                                             'col' => 'isQuery', 

                                                                                                                   }
      ,
         
	 # Associations
	 	 	       'except'
       => {
	 'type_impl' => 'array',
         'class' => 'UMMF::MOF_1_3::Model::Exception',

                           'table' => 'Model__CanRaise', 

                                                      'item' => 'except', 

                  'coll' => 'operation',

                  'slot' => 'except_i', 

                                                                      }
      ,
                         },
       'bases' => [  'UMMF::MOF_1_3::Model::BehavioralFeature',  ],
       '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
#


=head2 C<___initialize>

Initialize all Attributes and AssociationEnds in a instance of this Classifier.
Does B<not> initalize slots in its Generalizations.

See also: C<__initialize>.

=cut
sub ___initialize
{
  my ($self) = @_;

  # Attributes

    # Attribute isQuery
  if ( exists $self->{'isQuery'} ) {
    my $x = $self->{'isQuery'};
    $self->{'isQuery'} = undef;
        $self->set_isQuery($x);
      } else {
      }
  


  # Associations

  # AssociationEnd 
  #  operation 0..*
  #  <--> 
  #  except 0..* UMMF::MOF_1_3::Model::Exception.
    if ( defined $self->{'except'} ) {
    my $x = $self->{'except'};
        $self->{'except'} = [ ];
        $self->set_except(@$x);
  }
  

  $self;
}


my $__initialize_use;

=head2 C<__initialize>

Initialize all slots in this Classifier and all its Generalizations.

See also: C<___initialize>.

=cut
sub __initialize
{
  my ($self) = @_;

  # $DB::single = 1;

  unless ( ! $__initialize_use ) {
    $__initialize_use = 1;
    $self->__use('UMMF::MOF_1_3::Model::ModelElement');
    $self->__use('UMMF::MOF_1_3::Model::Feature');
    $self->__use('UMMF::MOF_1_3::Model::BehavioralFeature');
  }

  $self->UMMF::MOF_1_3::Model::Operation::___initialize;
  $self->UMMF::MOF_1_3::Model::ModelElement::___initialize;
  $self->UMMF::MOF_1_3::Model::Feature::___initialize;
  $self->UMMF::MOF_1_3::Model::BehavioralFeature::___initialize;

  $self;
}
      

=head2 C<__create>

Calls all <<create>> Methods for this Classifier and all Generalizations.

See also: C<___create>.

=cut
sub __create
{
  my ($self, @args) = @_;

  # $DB::single = 1;
  $self->UMMF::MOF_1_3::Model::Operation::___create(@args);
  $self->UMMF::MOF_1_3::Model::ModelElement::___create();
  $self->UMMF::MOF_1_3::Model::Feature::___create();
  $self->UMMF::MOF_1_3::Model::BehavioralFeature::___create();

  $self;
}




#################################################################
# Attributes
#



=for html <hr/>

=cut

#################################################################
# Attribute isQuery
# type = UMMF::MOF_1_3::Model::Boolean
# multiplicity = 1
# ordering = unordered
# ownerScope = instance
# initialValue = 

=head2 C<isQuery>

  my $val = $obj->isQuery;

Returns the L<UMMF::MOF_1_3::Model::Boolean|UMMF::MOF_1_3::Model::Boolean> value of Attribute C<isQuery>.

=cut
sub isQuery ($)
{
  my ($self) = @_;

  ;

  my $val = $self->{'isQuery'};

  ;

  $val;
}


=head2 C<set_isQuery>

  $obj->set_isQuery($val);

Sets the value of Attribute C<isQuery>.
C<$val> must be of type L<UMMF::MOF_1_3::Model::Boolean|UMMF::MOF_1_3::Model::Boolean> or C<undef>.
Returns C<$obj>.

=cut
sub set_isQuery ($$)
{
  my ($self, $val) = @_;

  ;

  if ( defined $val ) {
    ;
  }

    $self->{'isQuery'} = $val
  ;

  ;

  $self;
}


=head2 C<count_isQuery>

  $obj->count_isQuery;

Returns the number of elements (0 or 1) in C<isQuery>.

=cut
sub count_isQuery ($)
{
  my ($self) = @_;

  ;

  my $val = $self->{'isQuery'};

  ;

  defined $val ? 1 : 0;
}




#################################################################
# Association
#


=for html <hr/>

=cut

#################################################################
# AssociationEnd operation <---> except
# type = UMMF::MOF_1_3::Model::Exception
# multiplicity = 0..*
# ordering = ordered

=head2 C<except>

  my @val = $obj->except;
  my $ary_val = $obj->except;

Returns the AssociationEnd C<except> values of type L<UMMF::MOF_1_3::Model::Exception|UMMF::MOF_1_3::Model::Exception>.
In array context, returns all the objects in the Association.
In scalar context, returns an array ref of all the objects in the Association.

=cut
sub except ($)
{
  my ($self) = @_;

    my $x = $self->{'except'} ||= [ ];

  wantarray ? @{$x} : $x;
  
}


=head2 C<index_except>

  my $x = $obj->index_except($i);
  my @x = $obj->index_except($i, $count);

In scalar context, returns the value of AssociationEnd C<except> at index C<$i>.
In array context, returns the values between index C<$i> and C<$i + $count - 1>, inclusive.

=cut
sub index_except ($$@)
{
  my ($self, $i, $count) = @_;

  ;

  my $val = $self->{'except'} ||= [ ];

  ;

  wantarray ? $val->[$i .. (defined $count ? $i + $count - 1 : $i)]
            : $val->[$i];
}


=head2 C<index_of_except>

  my $index = $obj->index_of_except($val);

Returns the index of C<$val> in AssociationEnd C<except>.
Return C<undef> if C<$val> is not in C<except>.

=cut
sub index_of_except ($$)
{
  my ($self, $x) = @_;

  ;

  my $val = $self->{'except'} ||= [ ];

  ;

  __ummf_array_index($val, $x);
}


=head2 C<set_except>

  $obj->set_except(@val);

Sets the AssociationEnd C<except> value.
Elements of C<@val> must of type L<UMMF::MOF_1_3::Model::Exception|UMMF::MOF_1_3::Model::Exception>.
Returns C<$obj>.

=cut
sub set_except ($@)
{
  my ($self, @val) = @_;
  
  $self->clear_except;
  $self->add_except(@val);
}


=head2 C<set_index_except>

  $obj->set_index_except($i, $val);

Sets the value of AssociationEnd C<except> at index C<$i>.
Returns self.

=cut
sub set_index_except ($$$)
{
  my ($self, $i, $val) = @_;

  ;

  my $x = $self->{'except'} ||= [ ];

  no warnings;
  my $old;
  if ( ($old = $x->[$i]) ne $val) {
    # Recursion lock
        $x->[$i] = $val
    ;

    # Remove and add associations with other ends.
        
    $old->remove_operation($self) if $old;
    $val->add_operation($self)    if $val;

  
    ;
  }

  $self;
}


=head2 C<add_except>

  $obj->add_except(@val);

Adds AssociationEnd C<except> values.
Elements of C<@val> must of type L<UMMF::MOF_1_3::Model::Exception|UMMF::MOF_1_3::Model::Exception>.
Returns C<$obj>.

=cut
sub add_except ($@)
{
  my ($self, @val) = @_;
  
    my $x = $self->{'except'} ||= [ ];
    my $old; # Place holder for other MACRO.
  
  for my $val ( @val ) {
    # Recursion lock
        next if grep($_ eq $val, @$x);
        $self->__use('UMMF::MOF_1_3::Model::Exception')->__typecheck($val, "UMMF::MOF_1_3::Model::Operation.except");

    # Recursion lock
        push(@{$x}, $val);
        
    # Remove and add associations with other ends.
        
    $old->remove_operation($self) if $old;
    $val->add_operation($self)    if $val;

    }
  
  $self;
}


=head2 C<add_index_except>

  $obj->add_index_except($i, @val);

Adds AssociationEnd C<except> values at index C<$i>.
Elements of C<@val> must of type L<UMMF::MOF_1_3::Model::Exception|UMMF::MOF_1_3::Model::Exception>.
Returns C<$obj>.

=cut
sub add_index_except ($$@)
{
  my ($self, $i, @val) = @_;

  
    my $x = $self->{'except'} ||= [ ];
    my $old; # Place holder for other MACRO.
  
  for my $val ( @val ) {
    # Recursion lock
        next if grep($_ eq $val, @$x);
        $self->__use('UMMF::MOF_1_3::Model::Exception')->__typecheck($val, "UMMF::MOF_1_3::Model::Operation.except");

    # Recursion lock
        splice(@{$x}, $i, 0, $val); # Recursion lock
        ++ $i;
    
    # Remove and add associations with other ends.
        
    $old->remove_operation($self) if $old;
    $val->add_operation($self)    if $val;

    }
  
  
  $self;
}


=head2 C<remove_except>

  $obj->remove_except(@val);

Removes the AssociationEnd C<except> values C<@val>.
Elements of C<@val> must of type L<UMMF::MOF_1_3::Model::Exception|UMMF::MOF_1_3::Model::Exception>.
Returns C<$obj>.

=cut
sub remove_except ($@)
{
  my ($self, @val) = @_;
  
    my $x = $self->{'except'} ||= [ ];
  
  for my $old ( @val ) {
    # Recursion lock
        my $i; # index of $old in @$x.
    next unless defined($i = __ummf_array_index($x, $old));
    
    my $val = $old;
      
    $self->__use('UMMF::MOF_1_3::Model::Exception')->__typecheck($val, "UMMF::MOF_1_3::Model::Operation.except");

    # Recursion lock
        splice(@$x, $i, 1);     
    $val = undef;

    # Remove associations with other ends.

        
    $old->remove_operation($self) if $old;
    $val->add_operation($self)    if $val;

  ;

  }
  
  $self;
}


=head2 C<clear_except>

  $obj->clear_except;

Clears the AssociationEnd C<except> links to L<UMMF::MOF_1_3::Model::Exception|UMMF::MOF_1_3::Model::Exception>.
Returns C<$obj>.

=cut
sub clear_except ($) 
{
  my ($self) = @_;
  
    my $x = $self->{'except'} ||= [ ];
  
  my $val; # Place holder for other MACRO.
  
    $self->{'except'} = [ ];  # Recursion lock
  for my $old ( @$x ) { # Recursion lock
  
    # Remove associations with other ends.

        
    $old->remove_operation($self) if $old;
    $val->add_operation($self)    if $val;

  ;

  }
  
  $self;
}


=head2 C<count_except>

  $obj->count_except;

Returns the number of elements associated with C<except>.

=cut
sub count_except ($)
{
  my ($self) = @_;

  my $x = $self->{'except'};

    defined $x ? scalar @$x : 0;
  }







# End of Class Operation


=pod

=for html <hr/>

I<END OF DOCUMENT>

=cut

############################################################################

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: ###