class BaseMyClassPeer {
public static doSomething() {
MyClassPeer.work(); // good
work(); // bad
}
public static work() {
}
}
class MyClassPeer extends BaseMyClassPeer {
}In that example, both MyClassPeer.work() and work(), however, if you were to provide your own work method in the MyClassPeer it would not be called if in the base it called "work()".
Is this something that should be updated in the templates? I'd be whilling to give a diff of what I have. I had to add this so I could provide my own buildCriteria method.
Ryan Christianson
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
