Overview Schemas Index

Layered_interconnect_module_with_printed_component_design_arm (jsdai.SLayered_interconnect_module_with_printed_component_design_arm)


FUNCTION limdwpcd_get_sspc
          (input : SET [0:?] OF Structured_layout_component_sub_assembly_relationship) : SET [0:?] OF Single_stratum_printed_component;

LOCAL
            sspc : SET[0:?] OF Single_stratum_printed_component := [];  --this gives us access TO  the information base
    END_LOCAL;
          REPEAT i := 1 TO SIZEOF(input) BY 1;
                sspc := sspc + input[i]\Structured_layout_component_sub_assembly_relationship.related_view;
          END_REPEAT;

          RETURN(sspc);

END_FUNCTION; -- limdwpcd_get_sspc

public class FLimdwpcd_get_sspc
          public static Value run(SdaiContext _context, Value input)