|
FUNCTION get_value (input1 : STRING, np : SET [0:?] OF representation_item) : measure_representation_item; REPEAT i := 1 TO SIZEOF ( np ) BY 1 ; IF input1 = np [ i ] \ representation_item . name THEN RETURN ( np [ i ] ) ; END_IF ; END_REPEAT ; RETURN ( ? ) ; END_FUNCTION; -- get_value |
|
public class FGet_value public static Value run(SdaiContext _context, Value input1, Value np) |