numberOfDependencies += dependencies.length;
if (comp) {
System.out.print('(');
}
for (int j = 0; j < dependencies.length; j++) {
ComponentDependencyDeclaration dep = dependencies[j];
if (notavail && !isUnavailable(dep)) {
continue;
}
String depName = dep.getName();
String depType = dep.getType();
int depState = dep.getState();
if (comp) {
if (j > 0) {
System.out.print(' ');
}