complete generic type compatible API
------------------------------------
Key: TORQUE-31
URL: http://issues.apache.org/jira/browse/TORQUE-31
Project: Torque
Type: Improvement
Components: Generator
Versions: 3.2.1
Reporter: Thoralf Rickert
Priority: Trivial
If the generator creates Java5 compatible methods then there are some methods
from BasePeer that are not wrapped. This includes for example the execute*()
methods. If we wrap them in the generated classes the API looks a little bit
better.
Currently there is just one easy solution in my mind - wrap this methods in the
generated Base classes. For example:
public class BaseTablePeer extends BasePeer {
....
public static List<Record> executeQuery(String queryString) throws
TorqueException {
return (List<Record>)super.executeQuery(queryString);
}
....
}
This means, that every public method in BasePeer should be wrapped in the
generated class. I know, this is a lot and results in bigger classes and some
synchronization problems, if the API of BasePeer is changed. But I think, it's
easy to create.
I'll create a patch for that next week.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
http://www.atlassian.com/software/jira
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]