initializer = String.format("owner.%s", name);
} else if (initializer == null) {
JClassType type = getInstantiableType();
if (type != null) {
if ((type.isInterface() == null)
&& (type.findConstructor(new JType[0]) == null)) {
logger.die(NO_DEFAULT_CTOR_ERROR, type.getQualifiedSourceName(),
type.getName());
}
}
initializer = String.format("(%1$s) GWT.create(%1$s.class)",