Skip to content
Snippets Groups Projects
Commit 6b6836cf authored by Erika Chiara Pollinger's avatar Erika Chiara Pollinger
Browse files

Upped Project version

parent 8a5581d0
No related branches found
No related tags found
No related merge requests found
#This file is generated by ADITO designer. Do NOT delete or modify!
#Thu May 24 13:57:21 CEST 2018
version=5.1.1
#Tue Jun 12 10:03:48 CEST 2018
version=5.1.2
<?xml version="1.0" encoding="UTF-8"?>
<entity xmlns="http://www.adito.de/2018/ao/Model" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" VERSION="1.0.2" xsi:schemaLocation="http://www.adito.de/2018/ao/Model adito://models/xsd/entity/1.0.2">
<entity xmlns="http://www.adito.de/2018/ao/Model" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" VERSION="1.0.3" xsi:schemaLocation="http://www.adito.de/2018/ao/Model adito://models/xsd/entity/1.0.3">
<name>Pers_entity</name>
<title>Personen</title>
<majorModelMode>DISTRIBUTED</majorModelMode>
......
......@@ -2,8 +2,8 @@
<neonFrame xmlns="http://www.adito.de/2018/ao/Model" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" VERSION="1.0.2" xsi:schemaLocation="http://www.adito.de/2018/ao/Model adito://models/xsd/neonFrame/1.0.2">
<name>TASK_DATE_Neon</name>
<title>my ADITO</title>
<icon>%aditoprj%/neonFrame/TASK_DATE_Neon/icon.png</icon>
<majorModelMode>DISTRIBUTED</majorModelMode>
<icon>%aditoprj%/neonFrame/TASK_DATE_Neon/icon.png</icon>
<iconInactive>%aditoprj%/neonFrame/TASK_DATE_Neon/iconInactive.png</iconInactive>
<initialViewmode>MASK</initialViewmode>
<initialOperatingState>VIEW</initialOperatingState>
......
import("system.vars");
import("system.result");
/**
* Function for generating an object, which can generate the from clause of
* PERS_Entity
*
* @class persFromClauseGenerator
* @param {Object} pParamObject contains all neccessary params
*/
function persFromClauseGenerator(pParamObject)
{
//from clause is empty for now
//TODO add join to relation here, when table exists
var fromClause = "PERS";
//generation function for the entity from clause
function _generate()
{
......@@ -21,10 +28,23 @@ function persFromClauseGenerator(pParamObject)
//the function it self and the values are not visible outside
//and therefor savely encapsulated
return {
/**
*
* Generates the from clause for PERS_Entity
*
* @method generate
* @return {String}
*/
"generate":_generate
}
}
/**
* Function for getting an object, which can generate the where clause of PERS_Entity
* @class persWhereClauseGenerator
* @param {Object} pParamObject contains all neccessary parameters
*/
function persWhereClauseGenerator(pParamObject)
{
var whereClause = ""
......@@ -50,6 +70,13 @@ function persWhereClauseGenerator(pParamObject)
}
return {
/**
*
* Generates the where clause for PERS_Entity
*
* @method generate
* @return {String}
*/
"generate":_generate
}
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment