Philip- Actually I found something similar to this when I was messing around with getting getters on Torque generated beans too. In my case, I was trying to get the primary key for my table (a property called "id") by getting the getter using the reflection classes. However, there was no getter for that property but there was a setter. There were also getters and setters for all of the other columns in the table. The funny thing was that when I changed the return type in the Torque class to String instead of StringKey, the getter showed up!
At this point, I figured that it was some type of reflection thing where the returning of a custom class somehow gave the library a problem. Does this ring a bell with anyone? -Brian On Thu, 20 Dec 2001 23:16:55 -0500 Phillip Rhodes <[EMAIL PROTECTED]> wrote: > My turbine program is flaky. At lot of times it cannot find a getter > method in a Peer generated class. It usually messes up with the NumberKey > types of methods. > > The reason I say flaky is because it is inconsistent. Sometimes it > happens, sometimes it does not. > > Is there a fix? > Thanks, > Phillip > > > _________________________________________________________ > Do You Yahoo!? > Get your free @yahoo.com address at http://mail.yahoo.com > > > -- > To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> > For additional commands, e-mail: <mailto:[EMAIL PROTECTED]> -- Brian Lawler -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
