The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

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

VERSION

1.3

SYNOPSIS

DESCRIPTION

USAGE

EXPORT

METATYPE

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

SUPERCLASSES

UMMF::MOF_1_3::Model::BehavioralFeature

ATTRIBUTES

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

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

__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