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


UMMF documentation Contained in the UMMF distribution.

Index


Code Index:

NAME

Top

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

VERSION

Top

1.3

SYNOPSIS

Top

DESCRIPTION

Top

USAGE

Top

EXPORT

Top

METATYPE

Top

UMMF::UML_1_5::Foundation::Core::Class

SUPERCLASSES

Top

UMMF::MOF_1_3::Model::BehavioralFeature

ATTRIBUTES

Top

isQuery : UMMF::MOF_1_3::Model::Boolean

metatype = UMMF::UML_1_5::Foundation::Core::Attribute
type = UMMF::MOF_1_3::Model::Boolean
visibility = private
multiplicity = 1
changeability = changeable
targetScope = instance
ordering = unordered
initialValue = UNSPECIFIED
container_type = Set::Object

ASSOCIATIONS

Top

operation : THIS 0..* <---> except : UMMF::MOF_1_3::Model::Exception 0..*

metatype = UMMF::UML_1_5::Foundation::Core::AssociationEnd
type = UMMF::MOF_1_3::Model::Exception
multiplicity = 0..*
changeability = changeable
targetScope = instance
ordering = ordered
isNavigable = 1
aggregation = none
visibility = public
container_type = ARRAY

METHODS

Top

__validate_type

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

Returns true if $value is a valid representation of UMMF::MOF_1_3::Model::Operation.

__typecheck

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

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

isaOperation

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

isaModel__Operation

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

__model_name

  my $name = $obj_or_package->__model_name;

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

__isAbstract

  $package->__isAbstract;

Returns 0.

__tangram_schema

  my $tangram_schema $obj_or_package->__tangram_schema

Returns a HASH ref that describes this Classifier for Tangram.

See UMMF::Export::Perl::Tangram

___initialize

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

See also: __initialize.

__initialize

Initialize all slots in this Classifier and all its Generalizations.

See also: ___initialize.

__create

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

See also: ___create.

isQuery

  my $val = $obj->isQuery;

Returns the UMMF::MOF_1_3::Model::Boolean value of Attribute isQuery.

set_isQuery

  $obj->set_isQuery($val);

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

count_isQuery

  $obj->count_isQuery;

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

except

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

Returns the AssociationEnd except values of type 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.

index_except

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

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

index_of_except

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

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

set_except

  $obj->set_except(@val);

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

set_index_except

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

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

add_except

  $obj->add_except(@val);

Adds AssociationEnd except values. Elements of @val must of type UMMF::MOF_1_3::Model::Exception. Returns $obj.

add_index_except

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

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

remove_except

  $obj->remove_except(@val);

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

clear_except

  $obj->clear_except;

Clears the AssociationEnd except links to UMMF::MOF_1_3::Model::Exception. Returns $obj.

count_except

  $obj->count_except;

Returns the number of elements associated with except.

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



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


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

  no warnings;

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


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

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


sub isaOperation { 1 }


sub isaModel__Operation { 1 }


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

sub __model_name { 'Model::Operation' }



sub __isAbstract { 0; }


my $__tangram_schema;
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
#


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;

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;
}
      

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
#



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

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

  ;

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

  ;

  $val;
}


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

  ;

  if ( defined $val ) {
    ;
  }

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

  ;

  $self;
}


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

  ;

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

  ;

  defined $val ? 1 : 0;
}




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


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

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

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

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


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

  ;

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

  ;

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


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

  ;

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

  ;

  __ummf_array_index($val, $x);
}


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


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;
}


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;
}


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;
}


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;
}


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;
}


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

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

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







# End of Class Operation


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

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