Home | History | Annotate | Download | only in db

Lines Matching defs:COMPONENTS

208 	 * The list of all the components stored in the database.
210 private static String[] COMPONENTS;
250 * The list of known Eclipse components.
377 COMPONENTS = null;
471 System.err.println(scenarioName+" does not belongs to a known Eclipse component. So use scenario prefix "+componentName+" as component name by default and add it to the know components"); //$NON-NLS-1$
478 * Get all components read from database.
483 if (COMPONENTS == null) return EMPTY_LIST;
484 int length = COMPONENTS.length;
485 String[] components = new String[length];
486 System.arraycopy(COMPONENTS, 0, components, 0, length);
487 return components;
1060 allScenarios.put(COMPONENTS[component_id], scenarios = new ArrayList());
1242 * as this does not happen so often (e.g. eclipse only has 10 components).
1245 if (COMPONENTS== null) {
1246 COMPONENTS= new String[1];
1247 COMPONENTS[0] = component;
1250 int idx = Arrays.binarySearch(COMPONENTS, component);
1252 int length = COMPONENTS.length;
1253 System.arraycopy(COMPONENTS, 0, COMPONENTS = new String[length+1], 0, length);
1254 COMPONENTS[length] = component;
1255 Arrays.sort(COMPONENTS);