|
FUNCTION get_terminals (input : SET [0:?] OF physical_connectivity_definition_armx) : SET [0:?] OF component_terminal_abstract; LOCAL ct : SET OF component_terminal_abstract := [ ] ; i : INTEGER := 0 ; END_LOCAL ; REPEAT i := 1 TO SIZEOF ( input ) BY 1 ; ct := ct + input [ i ] . associated_terminals ; END_REPEAT ; RETURN ( ct ) ; END_FUNCTION; -- get_terminals |
|
public class FGet_terminals public static Value run(SdaiContext _context, Value input) |