× The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.



hi Joe,

Any time you call a Java method from RPG, you must pass the object in the first parameter. Each object has it's own methods -- how could Java know which object you're calling the method of if you don't provide it?


In Java syntax, you'd do something like this:

HSSFSheet mySheet = book.createSheet();
mySheet.autoSizeColumn((int)2);

So you've declared an object named mySheet, which is part of the HSSFSheet class. You've called the autoSizeColumn method of the mySheet object.

RPG doesn't have a means of specifying "object.method()" like Java does. So how can you tell RPG which object yo call the method from? The way you do that is by passing the object name as the first parameter.

HSSFSheet_autoSizeColumn( sheet: 2);

Also, although you say you know the method takes an integer as a parameter, when you wrote the prototype you didn't code any parameters... that doesn't make any sense. If you knew there was a parameter, why didn't you include it in the prototype?

Here's what I think your parameter should look like:

D HSSFSheet_autoSizeColumn...
D PR extproc(*JAVA:
D 'org.apache.poi.hssf.-
D usermodel.HSSFSheet'
D :'autoSizeColumn')
D Column like(jint) value

Finally... I don't understand why you're using the old HSSF versions of the classes. Wouldn't it make more sense to use the SS versions so it'll work for both XSSF/HSSF spreadsheets?

-SK



On 5/24/2012 4:36 PM, Joe Giusto II wrote:
I am having trouble with the autoSizeColumn. The spec says that it take an
int but when I try to compile, it says that I need to pass it an object.

D Column S LIKE(jint)
D HSSFSheet_autoSizeColumn...
D PR extproc(*JAVA:
D 'org.apache.poi.hssf.-
D usermodel.HSSFSheet'
D :'autoSizeColumn')

/free
HSSFSheet_autoSizeColumn(COLUMN);
/end-free

the error message:
*RNF7588 30 1 The first parameter for a non-static Java method call
must be
an Object.



As an Amazon Associate we earn from qualifying purchases.

This thread ...

Follow-Ups:
Replies:

Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].

Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.