Overview Schemas Index

Footprint_definition_arm (jsdai.SFootprint_definition_arm)


FUNCTION fd_get_components
          (input : SET [2:2] OF View_definition_relationship) : SET [0:?] OF Product_view_definition;

LOCAL
      pvd : SET OF Product_view_definition := [];
    END_LOCAL;
    REPEAT i := 1 TO HIINDEX(input);
      pvd := pvd + input[i]\View_definition_relationship.relating_view;
    END_REPEAT;
    RETURN (pvd);

END_FUNCTION; -- fd_get_components

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