LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   shell scripting (https://www.linuxquestions.org/questions/linux-newbie-8/shell-scripting-374983/)

s_shenbaga 10-20-2005 05:57 AM

shell scripting
 
hai all,

i have a function like the one bellow.


protected ActionForward levelList(ActionMapping mapping,
ActionForm form,
HttpServletRequest request,
HttpServletResponse response,
ActionErrors errors,
UserDataSession userDataSession,
CommonAGRModuleImpl module)

throws Exception
{
// Get action Form
HierarchyLevelListForm phlListForm = (HierarchyLevelListForm)form;
// Get VLH
ValueListHandler valueListHandler = new ValueListHandler(false);

// Set the default lines per page
valueListHandler.setLinesPerPage(Integer.parseInt(Property.get("agr.common.phl.listLinesPerPage","5" )));

// Fill the ValueListHandler from CompanyListForm
ObjectUtils.copyProperties(valueListHandler,phlListForm,null);

phlListForm.setSearchValue1("");
List arguments = phlListForm.getArguments();
arguments.add(new Object[]{null,null,phlListForm.getInPar1()});

module.findHierarchyLevelListByParameters(arguments, valueListHandler);

// Put the list result in request
request.setAttribute("phlVLH", valueListHandler);

return (mapping.findForward(FORWARD_SUCCESS));
}

}






I have given the word "findHierarchyLevelListByParameters", i have to find the name of the function i.e. "levelList" . Can u help me in doing this.

acid_kewpie 10-21-2005 04:12 PM

this isnt' shell scripting.. this is java i assume... why on earth did you call this thread "shell scripting"?!


All times are GMT -5. The time now is 06:28 PM.