inAttributes.add( new BijectedMethod(name, method, in) );
}
if ( method.isAnnotationPresent(Out.class) )
{
Out out = method.getAnnotation(Out.class);
String name = toName( out.value(), method );
outAttributes.add( new BijectedMethod(name, method, out) );
//can't use Init.instance() here because of unit tests
Init init = (Init) applicationContext.get(Seam.getComponentName(Init.class));
init.initNamespaceForName(name, true);