}
protected void addComponentAttachment(Deployment deployment, Object dependency)
{
MutableAttachments mutableAttachments = (MutableAttachments)deployment.getPredeterminedManagedObjects();
TestAttachment testAttachment = new TestAttachment("x" + deployment.getName(), dependency);
TestAttachments testAttachments = new TestAttachments();
testAttachments.addAttachment(testAttachment);
mutableAttachments.addAttachment(TestAttachments.class, testAttachments);
}