<@doc hierarchy="GMLDOM"> Class for location object (c) SAP AG 2003-2006. All rights reserved. #INCLUDE[lib:defs.inc] /** * A Location class. Used to represent a component location. * This is a Channel Object. It must be identical to its corresponding server side object * defined in property _objectType. * * @author I043344 */ Class ProxyData implement env:IChannelObject; <@doc>Gets the Location package prefix property implGUID = ''; <@doc>Gets the Location id property intrGUID = ''; <@doc>Gets the Package prefix property packagePrefix = ''; <@doc>Gets the Location display name property isExist = ''; <@doc>Gets the Location repository id property structurePreserved = ''; <@doc scope="private">Gets the Location development component object property normalized = ''; <@doc scope="private">Gets the corresponding server side object path property _objectType='com.sap.visualcomposer.channelObjects.ProxyData'; <@doc scope="private">Gets the corresponding client side object path property _gsObjectType = "dev:ProxyData"; <@doc> Creates a new ProxyData object constructor(implGUID, intrGUID, isExist, structurePreserved, normalized) this.init(implGUID, intrGUID, isExist, structurePreserved, normalized); end <@doc> Initialize a ProxyData object method init(implGUID, intrGUID, isExist, structurePreserved, normalized , packagePrefix) this.implGUID = implGUID || ''; this.intrGUID = intrGUID || ''; this.isExist = isExist || ''; this.structurePreserved = structurePreserved || ''; this.normalized = normalized || ''; this.packagePrefix = packagePrefix || ''; end method setImplGUID(guid) this.implGUID = guid; end method getImplGUID() return this.implGUID || ''; end method setIntrGUID(guid) this.intrGUID = guid; end method getIntrGUID() return this.intrGUID || ''; end method setIsExist(isExist) this.isExist = isExist; end method getIsExist() return this.isExist || ''; end method setPackagePrefix(packagePrefix) this.packagePrefix = packagePrefix; end method getPackagePrefix() return this.packagePrefix || ''; end method setStructurePreserved(structurePreserved) this.structurePreserved = structurePreserved; end method StructurePreserved() return this.structurePreserved || ''; end method setNormalized(normalized) this.normalized = normalized; end method getNormalized() return this.normalized || ''; end