<@doc alias="map" hierarchy="GMLDOM"> Represents a mapping of 2 fields. When a link connects an infoshape to a base infoshape, a mapping should be defined between fields in the source infoshape and the fields in the target infoshape. (c) SAP AG 2003-2006. All rights reserved. #INCLUDE[svg:defs.inc] /////////////////////////////////////////////////////////////////////// // CLASS HEADER Class Mapping inherit Element; metadata title = '#TEXT[XTIT_MAPPING]'; metadata descr = '#TEXT[XTOL_MAPPING]'; /////////////////////////////////////////////////////////////////////// // PROPERTIES //code example: this.mapping[0] = $ENV.createObject('gml:Mapping', {source:'B.Q', target:'B.P'}) <@doc>The field located on the source infoshape property source = ^gml:Field; <@doc>The field located on the target (base) infoshape property target = ^gml:Field; /////////////////////////////////////////////////////////////////////// // METHODS