GbeanType gbean = (GbeanType)object;
return "GBean: name = \"" + gbean.getName() +
"\", class = \"" + gbean.getClazz() + "\"";
}
else if (AttributeType.class.isInstance(object)) {
AttributeType attribute = (AttributeType)object;
return "Attribute: name = \"" + attribute.getName() +
"\", type = \"" + attribute.getType() +
"\", value = \"" + attribute.getValue() + "\"";
}
else if (PatternType.class.isInstance(object)) {
PatternType dependency = (PatternType)object;
return "Dependency: group = \"" + dependency.getGroupId() +
"\", artifact = \"" + dependency.getArtifactId() +