FUNCTION get_action_property_representation

(* SCHEMA cast_parts_schema; *)
 
  
       FUNCTION get_action_property_representation(
                    c_def_instance: characterized_action_definition
           ): SET OF action_property_representation;
     
         LOCAL
           pdr_set : SET OF action_property_representation:= [];
           pd_set  : SET OF action_property := [];
         END_LOCAL;
         pd_set := bag_to_set(USEDIN(c_def_instance,
             'CAST_PARTS_SCHEMA.ACTION_PROPERTY.DEFINITION'));
         IF SIZEOF(pd_set) < 1 THEN
           RETURN(pdr_set);
         END_IF;
         REPEAT i := 1 TO HIINDEX(pd_set) BY 1;
           pdr_set := pdr_set + bag_to_set(USEDIN(pd_set[i],
                 'CAST_PARTS_SCHEMA.ACTION_PROPERTY_REPRESENTATION.PROPERTY'));
         END_REPEAT;
     RETURN(pdr_set);
 
  END_FUNCTION;

Referenced By

Defintion get_action_property_representation is references by the following definitions:
DefinitionType
 assembly ENTITY
 casting_process ENTITY
 core_assembly ENTITY
 inspection_activity ENTITY
 inspection_plan ENTITY
 non_casting_activity ENTITY
 non_permanent_molding_process ENTITY
 permanent_molding_process ENTITY
 process_plan_activity ENTITY


[Top Level Definitions] [Exit]

Generated by STEP Tools® EXPRESS to HTML Converter
2012-03-27T17:17:49-04:00