Home | History | Annotate | Download | only in configuration

Lines Matching defs:configurable

685      * Returns the best matching {@link Configurable} for this configuration.
687 * @param configurables the list of {@link Configurable} to choose from.
689 * @return an item from the given list of {@link Configurable} or null.
693 public Configurable findMatchingConfigurable(List<? extends Configurable> configurables) {
705 ArrayList<Configurable> matchingConfigurables = new ArrayList<Configurable>();
707 Configurable res = configurables.get(i);
724 // look to see if one configurable has this qualifier.
734 for (Configurable configurable : matchingConfigurables) {
735 ResourceQualifier qualifier = configurable.getConfiguration().getQualifier(q);
751 // 4. If a configurable has a qualifier at the current index, remove all the ones that
757 Configurable configurable = matchingConfigurables.get(i);
758 ResourceQualifier qualifier = configurable.getConfiguration().getQualifier(q);
762 matchingConfigurables.remove(configurable);
767 matchingConfigurables.remove(configurable);