GWA app types

The Genero Web Application gwa.app module provides types.

Table 1. GWA app types
Types Description
PUBLIC TYPE TAppInformation RECORD
   title STRING
   version STRING
   build gwa.app.TBuildDateTime
   gwaVersion STRING
   embeddedVMVersion STRING
   fgl_getversion STRING
   gbcVersion STRING
END RECORD
The TAppInformation type defines a record for returning application information.
PUBLIC TYPE TAppVersions RECORD
   serverVersion STRING
   version STRING
   serverBuild gwa.app.TBuildDateTime
   build gwa.app.TBuildDateTime
END RECORD
The TAppVersions type defines a record for describing server and application version information.
PUBLIC TYPE TBuildDateTime DATETIME YEAR TO FRACTION
The TBuildDateTime type defines a build date time stamp.
PUBLIC TYPE TCheckUpToDateResult RECORD
  upToDate BOOLEAN
  versions gwa.app.TAppVersions
  error STRING
END RECORD
The TCheckUpToDateResult type a record for checking the up-to-date status of the application.
PUBLIC TYPE TServerVersionAndBuildResult RECORD
  serverVersion STRING
  serverBuild gwa.app.TBuildDateTime
  error STRING
END RECORD
The TServerVersionAndBuildResult type provides as record for checking the up-to-date status of the application on the server.
PUBLIC TYPE TUpdateDialogResult RECORD
  upToDate BOOLEAN
  updatePerformed BOOLEAN
  error STRING
END RECORD
The TUpdateDialogResult type provides a type for the result in updateDialog()