Package | Description |
---|---|
com.whitestein.lsps.engine.dto.val | |
com.whitestein.lsps.engine.lang | |
com.whitestein.lsps.engine.lang.compiled | |
com.whitestein.lsps.engine.tester |
Testing support for testing engine tasks.
|
com.whitestein.lsps.engine.validation | |
com.whitestein.lsps.lang |
This is the main package for the LSPS expression language.
|
com.whitestein.lsps.lang.exec |
All types in the language have their Java implementation class.
|
com.whitestein.lsps.lang.operation | |
com.whitestein.lsps.stdlib.function |
Classes that implements functions defined
in the standard library.
|
com.whitestein.lsps.vaadin |
Modifier and Type | Class and Description |
---|---|
class |
ListValueListAdapter
List adapter for the ListValue.
|
class |
SetValueSetAdapter
Set adapter for the SetValue.
|
Modifier and Type | Method and Description |
---|---|
CollectionHolder |
RecordProxySet.createProxies(ExecutionContext ctx,
CollectionHolder collection,
ListHolder properties)
Creates change proxy on each record holder in the collection.
|
CollectionHolder |
RecordProxySet.createProxies(ExecutionContext ctx,
CollectionHolder collection,
Property... properties)
Creates change proxy on each record holder in the collection.
|
CollectionHolder |
RecordProxySet.createProxies(ExecutionContext ctx,
RecordProxySetHolder proxySet,
CollectionHolder collection,
Property... properties)
Creates change proxy on each record holder in the collection.
|
Modifier and Type | Method and Description |
---|---|
CollectionHolder |
RecordProxySet.createProxies(ExecutionContext ctx,
CollectionHolder collection,
ListHolder properties)
Creates change proxy on each record holder in the collection.
|
CollectionHolder |
RecordProxySet.createProxies(ExecutionContext ctx,
CollectionHolder collection,
Property... properties)
Creates change proxy on each record holder in the collection.
|
CollectionHolder |
RecordProxySet.createProxies(ExecutionContext ctx,
RecordProxySetHolder proxySet,
CollectionHolder collection,
Property... properties)
Creates change proxy on each record holder in the collection.
|
Modifier and Type | Method and Description |
---|---|
Object |
CompiledNamespace.get(CollectionHolder collection,
Decimal index) |
Boolean |
CompiledNamespace.in(Object item,
CollectionHolder collection) |
Modifier and Type | Method and Description |
---|---|
void |
TestFunctionsImpl.setCompatibilityVersion(ExecutionContext ctx,
String version,
CollectionHolder moduleIds) |
void |
TestFunctions.setCompatibilityVersion(ExecutionContext ctx,
String version,
CollectionHolder moduleIds) |
Modifier and Type | Method and Description |
---|---|
protected Object |
RecordValidator.executeConstraint(com.whitestein.lsps.model.validation.ConstraintModel constraint,
RecordHolder record,
MapHolder validationContext,
CollectionHolder tags)
Executes a constraint type associated with a given constraint.
|
Set<QID> |
RecordValidator.resolveValidationTags(CollectionHolder tags)
Resolves a given collection of validation tags.
|
List<RecordHolder> |
RecordValidator.validate(RecordHolder record,
Property property,
CollectionHolder tags,
MapHolder context)
Validates a given record.
|
Collection<RecordHolder> |
RecordValidator.validateConstraint(com.whitestein.lsps.model.validation.ConstraintModel constraint,
RecordHolder record,
MapHolder validationContext,
CollectionHolder tags)
Validates a given record against a given constraint.
|
Modifier and Type | Method and Description |
---|---|
protected <E> Collection<E> |
RecordWrapper.toCollection(CollectionHolder collection,
Class<E> clazz,
RecordWrapperFactory factory)
Converts a given collection of LSPS records to record wrappers using a given factory.
|
Modifier and Type | Interface and Description |
---|---|
interface |
ListHolder
All objects of the type
ListType must implement this interface. |
interface |
SetHolder
All objects of the type
SetType must implement this interface. |
Modifier and Type | Class and Description |
---|---|
class |
MockListHolder
Mock list holder.
|
class |
MockSetHolder
Test implementation of "SetHolder".
|
class |
RangeHolder
Mock range holder.
|
Modifier and Type | Method and Description |
---|---|
Object |
CollectionOperation.execute(Namespace namespace,
String oper,
CollectionHolder collection,
Decimal index) |
Boolean |
CollectionOperation.execute(Namespace namespace,
String oper,
Object item,
CollectionHolder collection) |
Modifier and Type | Method and Description |
---|---|
CollectionHolder |
CollectionsFunctions.add(ExecutionContext ctx,
CollectionHolder collection,
Object... elements)
Returns a collection created by adding the specified element at the end of the collection.
|
CollectionHolder |
CollectionsFunctions.addAllCollections(ExecutionContext ctx,
CollectionHolder... collections)
Returns a collection created as concatenation of collections.
|
CollectionHolder |
CollectionsFunctions.addAllCollections(ExecutionContext ctx,
CollectionHolder collection,
Decimal index,
CollectionHolder... elements)
Returns a collection created by adding the specified elements, given as a collections, from the position
specified by index to the collection.
|
CollectionHolder |
CollectionsFunctions.addAt(ExecutionContext ctx,
CollectionHolder collection,
Decimal index,
Object... elements)
Returns a collection created by adding the specified elements from the position specified by index
to the collection.
|
CollectionHolder |
CollectionsFunctions.collect(ExecutionContext ctx,
CollectionHolder collection,
ClosureHolder function)
When given a collection
[a_1, a_2, ..., a_n] , this method returns [function(a_1),
function(a_2), ..., function(a_n)] . |
CollectionHolder |
CollectionsFunctions.collectWithIndex(ExecutionContext ctx,
CollectionHolder collection,
ClosureHolder function)
Returns a set/list/collection of values obtained by applying the function
to each item of the set/list/collection.
|
CollectionHolder |
CollectionsFunctions.compact(ExecutionContext ctx,
CollectionHolder collection)
Returns a collection containing non-null elements from a given
collection.
|
CollectionHolder |
CollectionsFunctions.remove(ExecutionContext ctx,
CollectionHolder collection,
Object... elements)
Returns a collection created by removing first occurrences of the elements from
the collection.
|
CollectionHolder |
CollectionsFunctions.removeAll(ExecutionContext ctx,
CollectionHolder collection,
CollectionHolder elements)
Returns a collection created by removing all occurrences of the elements from
the collection.
|
CollectionHolder |
CollectionsFunctions.removeAt(ExecutionContext ctx,
CollectionHolder collection,
Decimal index)
Returns a collection created by removing an element of the collection from the position specified by
index.
|
CollectionHolder |
CollectionsFunctions.removeRange(ExecutionContext ctx,
CollectionHolder collection,
Decimal fromIndex,
Decimal toIndex)
Returns a collection created by removing the specified range of elements
from the given collection.
|
CollectionHolder |
CollectionsFunctions.replace(ExecutionContext ctx,
CollectionHolder collection,
Object element1,
Object element2)
Returns a collection created by replacing all occurrences of the element1 by element2 in the collection.
|
CollectionHolder |
CollectionsFunctions.retainAll(ExecutionContext ctx,
CollectionHolder collection,
CollectionHolder... collections)
Returns a collection created by intersection of collections.
|
CollectionHolder |
CollectionsFunctions.reverse(ExecutionContext ctx,
CollectionHolder collection)
Returns a collection created by reversing the order of the elements in the specified collection.
|
CollectionHolder |
CollectionsFunctions.select(ExecutionContext ctx,
CollectionHolder collection,
ClosureHolder condition)
Returns a collection all the elements
e from the original collection where condition(e) == true . |
CollectionHolder |
CollectionsFunctions.select(ExecutionContext ctx,
CollectionHolder collection,
Type type)
Returns a collection all elements of the given type, null elements
not included.
|
CollectionHolder |
CollectionsFunctions.setAt(ExecutionContext ctx,
CollectionHolder collection,
Decimal index,
Object element)
Returns a collection created by replacing the element at the position given by index in the collection
with the specified element.
|
CollectionHolder |
CollectionsFunctions.sort(ExecutionContext ctx,
CollectionHolder collection,
Boolean ascending)
Returns a list or set with items sorted in ascending or descending natural order.
|
CollectionHolder |
CollectionsFunctions.sort(ExecutionContext ctx,
CollectionHolder collection,
ClosureHolder comparator)
Returns items of the collection ordered according to the comparator.
|
CollectionHolder |
CollectionsFunctions.subCollection(ExecutionContext ctx,
CollectionHolder collection,
Decimal fromIndex,
Decimal toIndex)
Returns a collection representing such a portion of the collection, which
starts from the specified fromIndex (inclusive) to the toIndex
(exclusive).
|
Modifier and Type | Method and Description |
---|---|
void |
ReflectionFunctionsImpl.activate(ExecutionContext ctx,
CollectionHolder goals) |
void |
ReflectionFunctions.activate(ExecutionContext ctx,
CollectionHolder goals)
(Re)activates inactive or finished goals.
|
CollectionHolder |
CollectionsFunctions.add(ExecutionContext ctx,
CollectionHolder collection,
Object... elements)
Returns a collection created by adding the specified element at the end of the collection.
|
ListHolder |
CollectionsFunctions.addAll(ExecutionContext ctx,
ListHolder list,
CollectionHolder... collections)
Returns a list created as concatenation of list and collections.
|
ListHolder |
CollectionsFunctions.addAll(ExecutionContext ctx,
ListHolder list,
Decimal index,
CollectionHolder... elements)
Returns a list created by adding the specified elements, given as a collections, from the position
specified by index to the list.
|
SetHolder |
CollectionsFunctions.addAll(ExecutionContext ctx,
SetHolder set,
CollectionHolder... collections)
Returns a set created as concatenation of set and collections.
|
SetHolder |
CollectionsFunctions.addAll(ExecutionContext ctx,
SetHolder set,
Decimal index,
CollectionHolder... elements)
Returns a set created by adding the specified elements, given as a collections, from the position
specified by index to the set.
|
CollectionHolder |
CollectionsFunctions.addAllCollections(ExecutionContext ctx,
CollectionHolder... collections)
Returns a collection created as concatenation of collections.
|
CollectionHolder |
CollectionsFunctions.addAllCollections(ExecutionContext ctx,
CollectionHolder collection,
Decimal index,
CollectionHolder... elements)
Returns a collection created by adding the specified elements, given as a collections, from the position
specified by index to the collection.
|
CollectionHolder |
CollectionsFunctions.addAllCollections(ExecutionContext ctx,
CollectionHolder collection,
Decimal index,
CollectionHolder... elements)
Returns a collection created by adding the specified elements, given as a collections, from the position
specified by index to the collection.
|
CollectionHolder |
CollectionsFunctions.addAt(ExecutionContext ctx,
CollectionHolder collection,
Decimal index,
Object... elements)
Returns a collection created by adding the specified elements from the position specified by index
to the collection.
|
CollectionHolder |
CollectionsFunctions.collect(ExecutionContext ctx,
CollectionHolder collection,
ClosureHolder function)
When given a collection
[a_1, a_2, ..., a_n] , this method returns [function(a_1),
function(a_2), ..., function(a_n)] . |
CollectionHolder |
CollectionsFunctions.collectWithIndex(ExecutionContext ctx,
CollectionHolder collection,
ClosureHolder function)
Returns a set/list/collection of values obtained by applying the function
to each item of the set/list/collection.
|
CollectionHolder |
CollectionsFunctions.compact(ExecutionContext ctx,
CollectionHolder collection)
Returns a collection containing non-null elements from a given
collection.
|
boolean |
CollectionsFunctions.contains(ExecutionContext ctx,
CollectionHolder collection,
Object... elements)
Test method to find out whether passed collection contains element
|
boolean |
CollectionsFunctions.containsAll(ExecutionContext ctx,
CollectionHolder collection,
CollectionHolder elements)
Test method to find out whether a given collection contains all elements.
|
boolean |
CollectionsFunctions.containsAny(ExecutionContext ctx,
CollectionHolder collection,
CollectionHolder elements)
Returns
true if the given collection contains any of the elements
from the second collection. |
Decimal |
CollectionsFunctions.count(ExecutionContext ctx,
CollectionHolder collection,
ClosureHolder condition)
Counts the number of elements in the collection that fulfill the passed condition.
|
void |
ReflectionFunctionsImpl.deactivate(ExecutionContext ctx,
CollectionHolder goals) |
void |
ReflectionFunctions.deactivate(ExecutionContext ctx,
CollectionHolder goals)
Deactivates not finished goals.
|
void |
ActionFunctionsImpl.deleteAllRecords(ExecutionContext ctx,
CollectionHolder records) |
void |
ActionFunctions.deleteAllRecords(ExecutionContext ctx,
CollectionHolder records)
Deletes the specified records and all related data links navigable from the deleted records.
|
boolean |
CollectionsFunctions.exists(ExecutionContext ctx,
CollectionHolder collection,
ClosureHolder condition)
Test whether any element in collection will fulfill passed condition
|
Decimal |
CollectionsFunctions.findIndex(ExecutionContext ctx,
CollectionHolder collection,
ClosureHolder condition)
Returns the index of the first occurrence of the collection element which
satisfies the specified condition; returns -1 if the condition is false
for all elements of the collection.
|
Decimal |
CollectionsFunctions.findIndex(ExecutionContext ctx,
CollectionHolder collection,
Decimal fromIndex,
ClosureHolder condition)
Returns the index of the first occurrence of the collection element
which satisfies the specified condition, starting at
fromIndex . |
Decimal |
CollectionsFunctions.findIndex(ExecutionContext ctx,
CollectionHolder collection,
Decimal fromIndex,
Decimal toIndex,
ClosureHolder condition)
Returns the index of the first occurrence of the collection element
which satisfies the specified condition, starting at
fromIndex
(inclusive) and finishing at toIndex (exclusive). |
Decimal |
CollectionsFunctions.findLastIndex(ExecutionContext ctx,
CollectionHolder collection,
ClosureHolder condition)
Returns the index of the last occurrence of the collection element which
satisfies the specified condition, searching backwards; returns -1 if the
condition is false for all elements of the collection.
|
Decimal |
CollectionsFunctions.findLastIndex(ExecutionContext ctx,
CollectionHolder collection,
Decimal toIndex,
ClosureHolder condition)
Returns the index of the last occurrence of the collection element which
satisfies the specified condition, searching backwards starting at index
toIndex - 1 ; returns -1 if no such element is found. |
Decimal |
CollectionsFunctions.findLastIndex(ExecutionContext ctx,
CollectionHolder collection,
Decimal fromIndex,
Decimal toIndex,
ClosureHolder condition)
Returns the index of the last occurrence of the collection element which
satisfies the specified condition, searching backwards starting at index
toIndex - 1 up to fromIndex ; returns -1 if no
such element is found. |
Object |
CollectionsFunctions.fold(ExecutionContext ctx,
CollectionHolder collection,
Object initialValue,
ClosureHolder function)
Combines the elements of the collection together using the binary function, starting with the
initialValue.
|
Object |
CollectionsFunctions.foldWithIndex(ExecutionContext ctx,
CollectionHolder collection,
Object initialValue,
ClosureHolder function)
Combines the elements of the collection together using the binary function, starting with the
initialValue.
|
boolean |
CollectionsFunctions.forAll(ExecutionContext ctx,
CollectionHolder collection,
ClosureHolder condition)
Test whether all elements in collection will fulfill passed condition
|
SetHolder |
CollectionsFunctions.getDuplicates(ExecutionContext ctx,
CollectionHolder collection)
Returns a set of element which are contained more than one time
in a given collection.
|
Object |
CollectionsFunctions.getFirst(ExecutionContext ctx,
CollectionHolder collection)
Returns the first item of the collection, or
null if the
collection is empty. |
Object |
CollectionsFunctions.getFirst(ExecutionContext ctx,
CollectionHolder collection,
ClosureHolder condition)
Returns the first element for which the given condition is true.
|
Object |
CollectionsFunctions.getLast(ExecutionContext ctx,
CollectionHolder collection)
Returns the last item of the collection, or
null if the
collection is empty. |
Object |
CollectionsFunctions.getLast(ExecutionContext ctx,
CollectionHolder collection,
ClosureHolder condition)
Returns the last element for which the given condition is true.
|
MapHolder |
CollectionsFunctions.groupBy(ExecutionContext ctx,
CollectionHolder collection,
ClosureHolder classifier)
Performs "group by".
|
boolean |
CollectionsFunctions.hasDuplicates(ExecutionContext ctx,
CollectionHolder collection)
Returns
true if the collection contains duplicate elements,
false otherwise. |
Decimal |
CollectionsFunctions.indexOf(ExecutionContext ctx,
CollectionHolder collection,
Object value)
Returns the index of the first occurrence of the specified element in the collection, or -1 if the
list does not contain the element.
|
boolean |
CollectionsFunctions.isEmpty(ExecutionContext ctx,
CollectionHolder collection)
Test method to check if collection is empty
|
String |
CollectionsFunctions.join(ExecutionContext ctx,
CollectionHolder collection)
Joins string representations of objects in a given collection.
|
String |
CollectionsFunctions.join(ExecutionContext ctx,
CollectionHolder collection,
String joinString)
Joins string representations of objects in a given collection.
|
String |
CollectionsFunctions.join(ExecutionContext ctx,
CollectionHolder collection,
String joinString,
Boolean includeEmpty)
Joins string representations of objects in a given collection.
|
Decimal |
CollectionsFunctions.lastIndexOf(ExecutionContext ctx,
CollectionHolder collection,
Object value)
Returns the index of the last occurrence of the specified element in the collection, or -1 if the
collection does not contain the element.
|
ListHolder |
CollectionsFunctions.listUnion(ExecutionContext ctx,
CollectionHolder... collections)
Creates a list of all elements in the given collection of collections.
|
MapHolder |
CollectionsFunctions.map(ExecutionContext ctx,
CollectionHolder keys,
ClosureHolder valueFunction)
For each key executes a given closure to obtain a map value.
|
MapHolder |
CollectionsFunctions.map(ExecutionContext ctx,
CollectionHolder collection,
ClosureHolder keyFunction,
ClosureHolder valueFunction)
For each element execute a keyFunction to obtain a map key and
valueFunction to obtain a map value.
|
MapHolder |
CollectionsFunctions.map(ExecutionContext ctx,
CollectionHolder keys,
CollectionHolder values)
Creates map from collection of keys and collection of values.
|
Object |
CollectionsFunctions.max(ExecutionContext ctx,
CollectionHolder collection)
Returns the maximum element from the given collection.
|
Date |
CollectionsFunctions.maxDate(ExecutionContext ctx,
CollectionHolder collection) |
Decimal |
CollectionsFunctions.maxDecimal(ExecutionContext ctx,
CollectionHolder collection) |
Decimal |
CollectionsFunctions.maxInteger(ExecutionContext ctx,
CollectionHolder collection) |
java.time.LocalDate |
CollectionsFunctions.maxLocalDate(ExecutionContext ctx,
CollectionHolder collection) |
String |
CollectionsFunctions.maxString(ExecutionContext ctx,
CollectionHolder collection) |
ListHolder |
ActionFunctionsImpl.mergeAllProxies(ExecutionContext ctx,
Boolean checkConflicts,
CollectionHolder records) |
ListHolder |
ActionFunctions.mergeAllProxies(ExecutionContext ctx,
Boolean checkConflicts,
CollectionHolder records)
Merges changes from the proxies to the proxied records.
|
Object |
CollectionsFunctions.min(ExecutionContext ctx,
CollectionHolder collection)
Returns the minimum element from the given collection.
|
Date |
CollectionsFunctions.minDate(ExecutionContext ctx,
CollectionHolder collection) |
Decimal |
CollectionsFunctions.minDecimal(ExecutionContext ctx,
CollectionHolder collection) |
Decimal |
CollectionsFunctions.minInteger(ExecutionContext ctx,
CollectionHolder collection) |
java.time.LocalDate |
CollectionsFunctions.minLocalDate(ExecutionContext ctx,
CollectionHolder collection) |
String |
CollectionsFunctions.minString(ExecutionContext ctx,
CollectionHolder collection) |
boolean |
CollectionsFunctions.notEmpty(ExecutionContext ctx,
CollectionHolder collection)
Test method to check if collection is not empty.
|
CollectionHolder |
CollectionsFunctions.remove(ExecutionContext ctx,
CollectionHolder collection,
Object... elements)
Returns a collection created by removing first occurrences of the elements from
the collection.
|
CollectionHolder |
CollectionsFunctions.removeAll(ExecutionContext ctx,
CollectionHolder collection,
CollectionHolder elements)
Returns a collection created by removing all occurrences of the elements from
the collection.
|
ListHolder |
CollectionsFunctions.removeAll(ExecutionContext ctx,
ListHolder list,
CollectionHolder elements)
Returns a list created by removing all occurrences of the elements from
the list.
|
SetHolder |
CollectionsFunctions.removeAll(ExecutionContext ctx,
SetHolder set,
CollectionHolder elements)
Returns a set created by removing all occurrences of the elements from
the set.
|
CollectionHolder |
CollectionsFunctions.removeAt(ExecutionContext ctx,
CollectionHolder collection,
Decimal index)
Returns a collection created by removing an element of the collection from the position specified by
index.
|
MapHolder |
CollectionsFunctions.removeKeys(ExecutionContext ctx,
MapHolder map,
CollectionHolder keys)
Returns a map created by removing the specified keys (and the corresponding values) from the
map.
|
CollectionHolder |
CollectionsFunctions.removeRange(ExecutionContext ctx,
CollectionHolder collection,
Decimal fromIndex,
Decimal toIndex)
Returns a collection created by removing the specified range of elements
from the given collection.
|
CollectionHolder |
CollectionsFunctions.replace(ExecutionContext ctx,
CollectionHolder collection,
Object element1,
Object element2)
Returns a collection created by replacing all occurrences of the element1 by element2 in the collection.
|
CollectionHolder |
CollectionsFunctions.retainAll(ExecutionContext ctx,
CollectionHolder collection,
CollectionHolder... collections)
Returns a collection created by intersection of collections.
|
CollectionHolder |
CollectionsFunctions.retainAll(ExecutionContext ctx,
CollectionHolder collection,
CollectionHolder... collections)
Returns a collection created by intersection of collections.
|
ListHolder |
CollectionsFunctions.retainAll(ExecutionContext ctx,
ListHolder list,
CollectionHolder... collections)
Returns a list created by intersection of list and all collections.
|
SetHolder |
CollectionsFunctions.retainAll(ExecutionContext ctx,
SetHolder set,
CollectionHolder... collections)
Returns a set created by intersection of set and all collections.
|
CollectionHolder |
CollectionsFunctions.reverse(ExecutionContext ctx,
CollectionHolder collection)
Returns a collection created by reversing the order of the elements in the specified collection.
|
CollectionHolder |
CollectionsFunctions.select(ExecutionContext ctx,
CollectionHolder collection,
ClosureHolder condition)
Returns a collection all the elements
e from the original collection where condition(e) == true . |
CollectionHolder |
CollectionsFunctions.select(ExecutionContext ctx,
CollectionHolder collection,
Type type)
Returns a collection all elements of the given type, null elements
not included.
|
CollectionHolder |
CollectionsFunctions.setAt(ExecutionContext ctx,
CollectionHolder collection,
Decimal index,
Object element)
Returns a collection created by replacing the element at the position given by index in the collection
with the specified element.
|
Decimal |
CollectionsFunctions.size(ExecutionContext ctx,
CollectionHolder collection)
Return size of a given collection.
|
CollectionHolder |
CollectionsFunctions.sort(ExecutionContext ctx,
CollectionHolder collection,
Boolean ascending)
Returns a list or set with items sorted in ascending or descending natural order.
|
CollectionHolder |
CollectionsFunctions.sort(ExecutionContext ctx,
CollectionHolder collection,
ClosureHolder comparator)
Returns items of the collection ordered according to the comparator.
|
ListHolder |
CollectionsFunctions.sortByKey(ExecutionContext ctx,
CollectionHolder collection,
ClosureHolder keyExtractor,
Boolean ascending,
Boolean nullsFirst)
Returns a list of elements sorted by keys produced by key extractor.
|
CollectionHolder |
CollectionsFunctions.subCollection(ExecutionContext ctx,
CollectionHolder collection,
Decimal fromIndex,
Decimal toIndex)
Returns a collection representing such a portion of the collection, which
starts from the specified fromIndex (inclusive) to the toIndex
(exclusive).
|
Decimal |
CollectionsFunctions.sum(ExecutionContext ctx,
CollectionHolder collection)
Returns a sum of decimals in the given collection.
|
ListHolder |
CollectionsFunctions.toList(ExecutionContext ctx,
CollectionHolder collection)
Returns a list of values contained in the set.
|
SetHolder |
CollectionsFunctions.toSet(ExecutionContext ctx,
CollectionHolder collection)
Returns a set of values contained in the collection.
|
ListHolder |
ValidationFunctions.validate(ExecutionContext ctx,
CollectionHolder collection,
Property property,
CollectionHolder tags,
MapHolder context)
Validates a given collection of records.
|
ListHolder |
ValidationFunctions.validate(ExecutionContext ctx,
RecordHolder record,
Property property,
CollectionHolder tags,
MapHolder context)
Validates a given record.
|
Modifier and Type | Method and Description |
---|---|
void |
VaadinUtilsCommon.clear(ExecutionContext ctx,
CollectionHolder viewModels) |
void |
VaadinUtilsCommon.invoke(ExecutionContext ctx,
CollectionHolder targets,
String methodName,
ListHolder parameters)
Invoke method on each target container.
|
void |
VaadinUtilsCommon.merge(ExecutionContext ctx,
CollectionHolder viewModels) |
void |
VaadinUtilsCommon.refresh(ExecutionContext ctx,
CollectionHolder components)
Refresh components
|
Copyright © 2007-2020 Whitestein Technologies. All Rights Reserved.