Skip to content
Snippets Groups Projects
Commit 32a19451 authored by Johannes Hörmann's avatar Johannes Hörmann
Browse files

fix comments for jsdoc generation

parent df17c02b
No related branches found
No related tags found
No related merge requests found
......@@ -451,6 +451,7 @@ function KeywordUtils(){
return {
/**
* toArray
* @ignore
*/
toArray: _toArrayFn
,getPropForKey: _getPropForKeyFn
......
......@@ -423,10 +423,12 @@ SqlCondition.equalsNot = function(pField, pValue, pAlternativeCond, pAlias) {
}
/**
provides functions for masking sql functions
*
* @param {String} [alias=currentAlias] database alias, you can specify null if you have no alias available and you can manually set the dbType property
*/
*provides functions for masking sql functions
*
* @param {String} [alias=currentAlias] database alias, you can specify null if you have no alias available and you can manually set the dbType property
*
* @class
*/
function SqlMaskingUtils(alias) {
this.alias = null;
Object.defineProperty(this, "alias", {
......@@ -1028,7 +1030,7 @@ SqlUtils.getSystemAlias = function()
*
* @return {String} SQL condition: where VALS in (1,2,3)
*/
this.getSqlInStatement = function(pFieldname, pData, pQuoteSymbol) {
SqlUtils.getSqlInStatement = function(pFieldname, pData, pQuoteSymbol) {
if (pData.length == 0)
return " 1 = 2 ";
......
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