| Author |
Method Invocation
|
Shruti Sharma
Ranch Hand
Joined: Mar 25, 2010
Posts: 55
|
|
Hi,
I have a piece of code as below:
-----------------------
public Object selectiveSelect(String finder, String[] collList) throws ApplicationException,
FrameworkException {
Object[] parm = {getAbstractCargo(), collList };
return select(finder, parm);
}
------------------------------
Can someone tell what does the statement below mean?
Object[] parm = {getAbstractCargo(), collList };
Thank you,
-Shruti
|
 |
Wouter Oet
Saloon Keeper
Joined: Oct 25, 2008
Posts: 2700
|
|
Please UseCodeTags when posting code. It will highlight your code and make it much easier to read. It probably will also increase the number of people helping you. You can edit your post with the button.
It creates an Object array with a length of 2 with the elements initialized to getAbstractCargo() and collList.
|
"Any fool can write code that a computer can understand. Good programmers write code that humans can understand." --- Martin Fowler
Please correct my English.
|
 |
 |
|
|
subject: Method Invocation
|
|
|