Searched defs:desired (Results 1 - 1 of 1) sorted by relevance

/glassfish-3.1.2/common/amx-core/src/main/java/org/glassfish/admin/amx/core/
H A DUtil.java390 and return a new Set with the matching items. The 'desired' interface can be
394 @param desired the interface to filter by
396 public static <T extends AMXProxy> Set<T> filterAMX(final Set<T> candidates, final Class<?> desired) { argument
399 if (desired.isAssignableFrom(amx.getClass())) {
422 and return a new Map with the matching items. The 'desired' interface can be
426 @param desired the interface to filter by
428 public static <T extends AMXProxy> Map<String, T> filterAMX(final Map<String, T> candidates, final Class<?> desired) { argument
432 if (desired.isAssignableFrom(amx.getClass())) {

Completed in 25 milliseconds