return _moduleId;
}
private String extractModuleId()
{
Id id = getAnnotation(_builderClass, Id.class);
if (id != null)
return id.value();
String className = _builderClass.getName();
// Don't try to do this with classes in the default package. Then again, you should
// never put classes in the default package!