to do was to try to "copy in" ERDivaList so that I could modify it.
That was the last thing I remember doing before it breaking. I have since deleted those components.
doesn't really give me much to go on ... teh ERXModel line 71 is
/**
* Sets the default EOEntity class to com.webobjects.eoaccess.ERXEntity. You can provide your
* own via the property <code>er.extensions.ERXModel.defaultEOEntityClassName</code> however your class
* must be in the same package unless you plan on re-implementing eof itself.
*
* @see com.webobjects.eoaccess.EOModel#_addEntityWithPropertyList(java.lang.Object)
*/
@Override
public Object _addEntityWithPropertyList(Object propertyList) throws InstantiationException, IllegalAccessException {
71 ====> NSMutableDictionary<String, Object> list = ((NSDictionary<String, Object> )propertyList).mutableClone();
if (list.objectForKey("entityClass") == null) {
String eoEntityClassName = ERXProperties.stringForKey("er.extensions.ERXModel.defaultEOEntityClassName");
if (eoEntityClassName == null) {
eoEntityClassName = ERXEntity.class.getName();
}
list.setObjectForKey(eoEntityClassName, "entityClass" );
}
return super._addEntityWithPropertyList(list);
}
James
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden