return main;
}
protected void addAttachment(Deployment deployment, Object dependency, boolean install)
{
MutableAttachments mutableAttachments = (MutableAttachments)deployment.getPredeterminedManagedObjects();
TestAttachments testAttachments = mutableAttachments.getAttachment(TestAttachments.class);
if (testAttachments == null)
{
testAttachments = new TestAttachments();
mutableAttachments.addAttachment(TestAttachments.class, testAttachments);
}
TestAttachment testAttachment = new TestAttachment("x" + deployment.getName(), dependency, install);
testAttachments.addAttachment(testAttachment);
}