Description of Example goes here...
public class MyStuffMixin implements MyStuff{ @Structure ObjectBuilderFactory factory; public SomeStuff createSomeStuff()
{
ObjectBuilder builder = factory.newObjectBuilder( SomeStuff.class );
return builder.newInstance();
}
}