Home | History | Annotate | Download | only in jca

Lines Matching refs:configs

101                                     (Arrays.asList(providerList.configs));
116 ProviderConfig[] configs = new ProviderConfig[providerList.size() - 1];
118 for (ProviderConfig config : providerList.configs) {
120 configs[j++] = config;
123 return new ProviderList(configs, true);
129 ProviderConfig[] configs = new ProviderConfig[providers.length];
131 configs[i] = new ProviderConfig(providers[i]);
133 return new ProviderList(configs, true);
137 private final ProviderConfig[] configs;
139 // flag indicating whether all configs have been loaded successfully
145 return configs.length;
153 * Create a new ProviderList from an array of configs
155 private ProviderList(ProviderConfig[] configs, boolean allLoaded) {
156 this.configs = configs;
191 configs = configList.toArray(PC0);
207 for (ProviderConfig config : configs) {
225 return configs.length;
233 Provider p = configs[index].getProvider();
248 return (index != -1) ? configs[index] : null;
262 for (int i = 0; i < configs.length; i++) {
274 return configs.length;
281 for (int i = 0; i < configs.length; i++) {
282 Provider p = configs[i].getProvider();
287 if (n == configs.length) {
300 if (n == configs.length) {
304 for (int i = 0, j = 0; i < configs.length; i++) {
305 ProviderConfig config = configs[i];
320 return Arrays.asList(configs).toString();
330 for (int i = 0; i < configs.length; i++) {
430 if (providerIndex >= configs.length) {