FUNCTION get_property_definition_representations

(* SCHEMA cast_parts_schema; *)
  FUNCTION get_property_definition_representations(
               c_def_instance: characterized_definition
      ): SET OF property_definition_representation;

    LOCAL
      pdr_set : SET OF property_definition_representation := [];
      pd_set  : SET OF property_definition := [];
    END_LOCAL;
    pd_set := bag_to_set(USEDIN(c_def_instance,
        'CAST_PARTS_SCHEMA.PROPERTY_DEFINITION.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.PROPERTY_DEFINITION_REPRESENTATION.DEFINITION'));
    END_REPEAT;
    RETURN(pdr_set);

  END_FUNCTION; -- get_property_definition_representations

Referenced By

Defintion get_property_definition_representations is references by the following definitions:
DefinitionType
 boss ENTITY
 casting_design_feature ENTITY
 casting_feature_size ENTITY
 casting_insert ENTITY
 chaplet ENTITY
 chill ENTITY
 choke ENTITY
 cooling_port ENTITY
 core ENTITY
 core_master ENTITY
 core_print ENTITY
 die_cast_master ENTITY
 die_cast_tooling ENTITY
 die_clamping ENTITY
 die_core ENTITY
 die_design_feature ENTITY
 die_master ENTITY
 die_mold_tooling ENTITY
 ejector_design_feature ENTITY
 ejector_plate ENTITY
 ejector_system ENTITY
 feature_definition ENTITY
 feeder ENTITY
 filter ENTITY
 flask ENTITY
 flaskless ENTITY
 flat_face ENTITY
 gating_design_feature ENTITY
 ingate ENTITY
 ingate_contact ENTITY
 investment_casting_master ENTITY
 investment_casting_tooling ENTITY
 investment_design_feature ENTITY
 investment_mold ENTITY
 lost_foam_casting_die ENTITY
 master_pattern ENTITY
 mold_box ENTITY
 mold_lock ENTITY
 outside_profile ENTITY
 pattern_plate ENTITY
 pin_center ENTITY
 pocket ENTITY
 production_core_box ENTITY
 production_die_cast_mold ENTITY
 production_die_mold ENTITY
 production_investment_cast_mold ENTITY
 production_pattern_definition ENTITY
 production_tool ENTITY
 protrusion ENTITY
 reset_or_push_pin ENTITY
 revolved_profile ENTITY
 rib ENTITY
 rib_top ENTITY
 riser ENTITY
 riser_contact ENTITY
 rounded_end ENTITY
 round_hole ENTITY
 runner ENTITY
 sand_cast_design_feature ENTITY
 sand_mold ENTITY
 secondary_tooling ENTITY
 slide ENTITY
 slot ENTITY
 sprue ENTITY
 step ENTITY
 vent ENTITY
 well ENTITY


[Top Level Definitions] [Exit]

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