I just downloaded the latest Wonder 5.4 frameworks (not the jars), installed them by copying them to my /Library/Frameworks folder and now my project, which was fine before, says it can't find any of the ERX classes. e.g. the package pasted below says er.extensions.ERXGenericRecord cannot be resolved. What's weirder is I can navigate to ERXGenericRecord from the line with an error on it using Cmd-Click, and it shows up fine, with no errors. Using Time Machine I went back to the previously installed frameworks and everything was fine again. Any ideas??
package com.netbracketsfw.model;
import com.netbracketsfw.core.EOCopyable;
import com.webobjects.eocontrol.EOEnterpriseObject;
import com.webobjects.foundation.NSDictionary;
import com.webobjects.foundation.NSMutableDictionary;
import er.extensions.ERXGenericRecord;
public class NetBracketsGenericRecord extends ERXGenericRecord implements EOCopyable {
public EOEnterpriseObject copy(NSMutableDictionary copiedObjects) {
return EOCopyable.DefaultImplementation.copy(copiedObjects, this);
}
public EOEnterpriseObject copy() {
return copy(new NSMutableDictionary());
}
// Subclasses can override this to copy via a different mechanism.
// This can be anything from EOCopyable.Utility.referenceCopy(this)
// to a fully customized copy.
public EOEnterpriseObject duplicate(NSMutableDictionary copiedObjects) {
return EOCopyable.Utility.deepCopy(copiedObjects, this);
}
}