Package ilcd
Class General

Public Method getProjectInfo

static ProjectInfo getProjectInfo()

_INSERT_METHOD_SIGNATURE_HERE_

Description:

Returns Description
static ProjectInfo information about the project stored in flash memory

The getProjectInfo() method is used to obtain information of the current project. The ProjectInfo return type delivers project specific informations.

Note


Example

ProjectInfo proInfo = General.getProjectInfo();

String proDesc = proInfo.getProjectDescription();

("05.17.16".equals(proInfo.getProjectModificationDate()))

If the last expression evaluates to true, the project was written to flash on May 17th, 2016.
a value can be optained with a single call:

("10:23:19".equals(General.getProjectInfo().getProjectModificationTime()))

See also:

ProjectInfo