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

refactor all libs

parent 583c5bd1
No related branches found
No related tags found
No related merge requests found
import("system.neon");
import("system.text");
/**
* provides static methods for special handling of entities in JDito-Processes
* do not create an instance of this
*
* @class
*/
* provides static methods for special handling of entities in JDito-Processes
* do not create an instance of this
*
* @class
*/
function IndexsearchUtils() {}
//todo: comment
/**
* TODO: Comment everything!
*
* @param {} fieldname
* @param {} affectedInfoContainer
* @param {} updateFn
*
* @return {}
*/
IndexsearchUtils.getAffectedIdValues = function(fieldname, affectedInfoContainer, updateFn) {
var affectedIds;
switch (affectedInfoContainer.action){
......@@ -23,7 +34,18 @@ IndexsearchUtils.getAffectedIdValues = function(fieldname, affectedInfoContainer
return affectedIds || [];
}
//todo: comment
/**
* TODO: Comment everything!
*
* @param {} changedIdValue
* @param {} changedTable
* @param {} action
* @param {} columnsFn
* @param {} oldValueFn
* @param {} newValueFn
*
* @return {}
*/
IndexsearchUtils.createAffectedInfoContainer = function(changedIdValue, changedTable, action, columnsFn, oldValueFn, newValueFn) {
var res, internalStorage;
internalStorage = {};
......
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