private final void beginConstructor()
{
// create a constructor that just calls super.
MethodBuilder realConstructor =
cb.newConstructorBuilder(Modifier.PUBLIC);
realConstructor.callSuper();
realConstructor.methodReturn();
realConstructor.complete();
constructor = cb.newMethodBuilder(Modifier.PUBLIC, "void", "postConstructor");
constructor.addThrownException(ClassName.StandardException);