<@doc hierarchy="GMLDOM" also="@Translation"> The Text is an entry in a Translation table, under a Scenario. (c) SAP AG 2003-2006. All rights reserved. // Written By Mickey Hoter ////////////////////////////////////////////////////////////////////// // CLASS HEADER Class Text inherit core.gml:Element; override method onCreate() //donothing end /////////////////////////////////////////////////////////////////////// // PROPERTIES <@doc>The original text string to be translated property text = ''; <@doc>SAP standard translation type (e.g. XTIT, XFLD...) property type = ''; <@doc>A reference to the originating GML element holding the translatable property property objID = ''; /////////////////////////////////////////////////////////////////////// // METHODS method getUID() return this.id; end method getText() return this.text; end method setText(value) this.text = value; end method setType(type) this.type = type; end