Image: WOImage {
data = "">
mimeType = "image/jpeg";
foo = aPanel;
bar = aPanel.images;
WODebug = true;
}
[2007-04-10 13:43:35 PDT] <WorkerThread0> [Thumbnail:WOImage] foo <== (com.webobjects.appserver._private.WOKeyValueAssociation: {values = {title = "Testing"; images = "null"; last_modified_date = 2007-04-09 23:19:55 Etc/GMT; description = "Test 123"; creation_date = 2007-04-09 23:19:55 Etc/GMT; }; this = "<com.furfly.eo.Panel d23e75 _EOIntegralKeyGlobalID[Panel (java.lang.Integer)1000018]>"; })
[2007-04-10 13:43:35 PDT] <WorkerThread0> [Thumbnail:WOImage] bar <== (com.webobjects.appserver._private.WOKeyValueAssociation: null)
[2007-04-10 13:43:35 PDT] <WorkerThread0> [Thumbnail:WOImage] data <== (com.webobjects.appserver._private.WOKeyValueAssociation: null)
[2007-04-10 13:43:35 PDT] <WorkerThread0> [Thumbnail:WOImage] mimeType <== (class java.lang.String: "image/jpeg")
Ok, so it's the images part that's null. That's the to-one relationship to PanelImages. I thought maybe I needed to do something to get the fetch spec to include it, but I can't find anything that looks relevant.
Use null for an empty qualifier.
That was the first thing I tried:
EOFetchSpecification fs = EOFetchSpecification("Panel", null, null);
but it gave me
The method EOFetchSpecification(String, null, null) is undefined for the type Display
(Display is the name of this component)
So I was trying to create an empty EOQualifier, but that wasn't working either.
thanks,
janine