java.util.Collection query(Criteria critObj)
{
java.util.Collection retVal=null;
retVal=query(critObj);
if(retVal == null)
{
retVal=java.util.Collections.EMPTY_SET;
}
return(retVal);
}
My problem is figuring out how to generate IDL that represents java.util.Collections.EMPTY_SET. Since java.util.Collections is a static class, I'm having problems generating the IDL that represents this. If anyone has ideas or suggestions, it would be appreciated.
Thanks in advance