/ Utility routine. */ /
| 730 | /* Utility routine. */ |
| 731 | /***********************************************************************/ |
| 732 | int JDBConn::GetMaxValue(int n) |
| 733 | { |
| 734 | jint m; |
| 735 | jmethodID maxid = nullptr; |
| 736 | |
| 737 | if (gmID(m_G, maxid, "GetMaxValue", "(I)I")) |
| 738 | return -1; |
| 739 | |
| 740 | // call method |
| 741 | if (Check(m = env->CallIntMethod(job, maxid, n))) |
| 742 | htrc("GetMaxValue: %s", Msg); |
| 743 | |
| 744 | return (int)m; |
| 745 | } // end of GetMaxValue |
| 746 | |
| 747 | /***********************************************************************/ |
| 748 | /* AddJars: add some jar file to the Class path. */ |
no test coverage detected