Uses of Interface
com.levigo.jadice.web.client.util.context.ContextUtils.IsAssignable
Packages that use ContextUtils.IsAssignable
-
Uses of ContextUtils.IsAssignable in com.levigo.jadice.web.client.util.context
Methods in com.levigo.jadice.web.client.util.context with parameters of type ContextUtils.IsAssignableModifier and TypeMethodDescriptionstatic int
ContextUtils.count
(com.google.gwt.user.client.ui.IsWidget owner, ContextUtils.IsAssignable<?> isAssignable) Count the elements matching the given class in the context for the given owner.static <T> Collection
<T> ContextUtils.findAll
(com.google.gwt.user.client.ui.IsWidget owner, ContextUtils.IsAssignable<T> isAssignable) Find all elements matching the given class in the context for the given owner.static <T> Collection
<T> ContextUtils.findAll
(Collection<? extends Object> collection, ContextUtils.IsAssignable<T> isAssignable) Find all objects in the given collection which are assignable to the givenContextUtils.IsAssignable
.static <T> T
ContextUtils.findFirst
(com.google.gwt.user.client.ui.IsWidget owner, ContextUtils.IsAssignable<T> isAssignable) Find the first element matching the given class in the context for the given owner.static <T> T
ContextUtils.findFirst
(Collection<? extends Object> collection, ContextUtils.IsAssignable<T> isAssignable) Find the first element matching the given class in the given collection.static <T> void
ContextUtils.removeByClass
(com.google.gwt.user.client.ui.IsWidget owner, ContextUtils.IsAssignable<T> isAssignable) Remove all elements matching the given class from the context for the given owner.static boolean
ContextUtils.removeByClass
(Context context, ContextUtils.IsAssignable<? extends Object> isAssignable) Remove all non-context elements matching the given class.static <T> void
ContextUtils.replace
(com.google.gwt.user.client.ui.IsWidget owner, Collection<? extends T> elements, ContextUtils.IsAssignable<T> isAssignable) Replace all current elements matching the givenContextUtils.IsAssignable
in the context for the given owner with the given collection of elements.static <T> void
ContextUtils.replace
(com.google.gwt.user.client.ui.IsWidget owner, T element, ContextUtils.IsAssignable<? super T> isAssignable) Replace all current elements matching the givenContextUtils.IsAssignable
in the context for the given owner with the given element.static <T> void
ContextUtils.replace
(Context context, Collection<? extends T> collection, ContextUtils.IsAssignable<T> isAssignable) Replaces all non-Context entries in the current context objects collection that match the givenContextUtils.IsAssignable
with the elements found in the given collection.static <T> void
ContextUtils.replace
(Context context, T element, ContextUtils.IsAssignable<? super T> isAssignable) Replaces all non-Context entries in the current context objects collection that match the givenContextUtils.IsAssignable
with the elements found in the given collection.