protected List<String> addChildProcedures(Collection<String> procedures) { Set<String> allProcedures = Sets.newHashSet(); if (procedures != null) { for (String procedure : procedures) { allProcedures.add(procedure); allProcedures.addAll(getCache().getChildProcedures(procedure, true, false)); } } return Lists.newArrayList(allProcedures); }
protected boolean hasChildProcedure(String procedure) { return CollectionHelper.isNotEmpty(getCache().getChildProcedures(procedure, false, false)); }
protected boolean hasChildProcedure(String procedure) { return CollectionHelper.isNotEmpty(getCache().getChildProcedures(procedure, false, false)); }
protected boolean hasChildProcedure(String procedure) { return CollectionHelper.isNotEmpty(getCache().getChildProcedures(procedure, false, false)); }