return BaseObjectModel.this.clazz.getConstructors();
}
});
for (Constructor<?> constructor : jConstructors)
{
constructors.add(new ConstructorDescriptorImpl(clazz, constructor));
}
if (constructors.size() == 0)
{
String msg = "Not found accepted constructors for provider class " + clazz.getName();
throw new RuntimeException(msg);