Overview Schemas Index

Layered_interconnect_simple_template_arm (jsdai.SLayered_interconnect_simple_template_arm)


FUNCTION list_get_zone_name
          (input : SET [0:?] OF Connection_zone_in_layout_template) : SET [0:?] OF STRING;

LOCAL
      s : SET OF STRING := [];
    END_LOCAL;
    REPEAT  i := 1 TO SIZEOF(input) BY 1;
      s := s + input[i]\Characterizable_object.name;
    END_REPEAT;
    RETURN(s);

END_FUNCTION; -- list_get_zone_name

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