Overview Schemas Index

FOOTPRINT_DEFINITION_XIM (jsdai.SFootprint_definition_xim)


FUNCTION fd_get_rmodels
          (input : SET [2:2] OF product_definition_relationship) : SET [0:?] OF shape_representation;

LOCAL
      gm : SET  OF  shape_representation := [];
      pvd : SET OF Product_view_definition := [];
    END_LOCAL;
      pvd := fd_get_components(input);
    IF (SIZEOF(pvd) >= 0) THEN      
      REPEAT i := 1 TO HIINDEX(pvd);
        gm := gm + fd_get_amodel(pvd[i]);
      END_REPEAT;
      RETURN (gm);
    END_IF;
    RETURN(?);

END_FUNCTION; -- fd_get_rmodels

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