package org.apache.jsp.common.list;
import javax.servlet.*;
import javax.servlet.http.*;
import javax.servlet.jsp.*;
import com.edeal.frontline.navigation.FlRequest;
import com.edeal.frontline.grid.*;
import com.edeal.frontline.*;
import com.edeal.frontline.grid.EdealGrid;
import java.util.*;
import com.edeal.frontline.FrontlineException;
import com.edeal.frontline.navigation.EdealBigTabsNavigation;
import com.edeal.frontline.navigation.EdealBigTabsNavigation.BigTabsParams;
import java.util.Enumeration;
import com.edeal.frontline.helper.ActorBaseHelper;
import com.edeal.frontline.helper.custom.ActorHelper;
import org.apache.commons.lang.StringUtils;
import com.edeal.frontline.helper.custom.ListHelper;
public final class listAjax_jsp extends org.apache.jasper.runtime.HttpJspBase
implements org.apache.jasper.runtime.JspSourceDependent {
private static final JspFactory _jspxFactory = JspFactory.getDefaultFactory();
private static java.util.List _jspx_dependants;
static {
_jspx_dependants = new java.util.ArrayList(1);
_jspx_dependants.add("/WEB-INF/taglib.tld");
}
private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005ffl_005flabel_0026_005flabel_005fcode_005fnobody;
private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005ffl_005fwebapp_005fnobody;
private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005ffl_005fgetMessage_0026_005fcode_005falt_005fnobody;
private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005ffl_005finput_0026_005fproperty_005fondelete_005fnodiv_005fid_005falt_005fnobody;
private javax.el.ExpressionFactory _el_expressionfactory;
private org.apache.AnnotationProcessor _jsp_annotationprocessor;
public Object getDependants() {
return _jspx_dependants;
}
public void _jspInit() {
_005fjspx_005ftagPool_005ffl_005flabel_0026_005flabel_005fcode_005fnobody = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig());
_005fjspx_005ftagPool_005ffl_005fwebapp_005fnobody = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig());
_005fjspx_005ftagPool_005ffl_005fgetMessage_0026_005fcode_005falt_005fnobody = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig());
_005fjspx_005ftagPool_005ffl_005finput_0026_005fproperty_005fondelete_005fnodiv_005fid_005falt_005fnobody = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig());
_el_expressionfactory = _jspxFactory.getJspApplicationContext(getServletConfig().getServletContext()).getExpressionFactory();
_jsp_annotationprocessor = (org.apache.AnnotationProcessor) getServletConfig().getServletContext().getAttribute(org.apache.AnnotationProcessor.class.getName());
}
public void _jspDestroy() {
_005fjspx_005ftagPool_005ffl_005flabel_0026_005flabel_005fcode_005fnobody.release();
_005fjspx_005ftagPool_005ffl_005fwebapp_005fnobody.release();
_005fjspx_005ftagPool_005ffl_005fgetMessage_0026_005fcode_005falt_005fnobody.release();
_005fjspx_005ftagPool_005ffl_005finput_0026_005fproperty_005fondelete_005fnodiv_005fid_005falt_005fnobody.release();
}
public void _jspService(HttpServletRequest request, HttpServletResponse response)
throws java.io.IOException, ServletException {
PageContext pageContext = null;
HttpSession session = null;
ServletContext application = null;
ServletConfig config = null;
JspWriter out = null;
Object page = this;
JspWriter _jspx_out = null;
PageContext _jspx_page_context = null;
try {
response.setContentType("text/plain;charset=UTF-8");
pageContext = _jspxFactory.getPageContext(this, request, response,
null, true, 8192, true);
_jspx_page_context = pageContext;
application = pageContext.getServletContext();
config = pageContext.getServletConfig();
session = pageContext.getSession();
out = pageContext.getOut();
_jspx_out = out;
out.write('\n');
/******************************************************************************
* Copyright (c) 2000-2011 E-DEAL
*
* E-DEAL S.A.
* 41, rue Périer
* 92120 Montrouge
* France
*
* T: +33 (0)1 73 03 29 80
* F: +33 (0)1 73 01 69 77
* http://www.e-deal.com
*
* La diffusion de ce code source sous quelque forme que ce soit sans
* l'autorisation de E-DEAL est interdite.
*
* Vous êtes autorisés à modifier ce code source uniquement pour votre usage
* propre et sous réserve que les mentions de copyright demeurent intactes.
*
* Ce code est fourni en l'état. Aucune garantie d'aucune sorte, explicite ou
* implicite n'est donnée. En aucun cas E-DEAL ne pourra être tenu pour
* responsable des dommages pouvant résulter de l'utilisation de ce code
* source.
******************************************************************************/
// Please note! If you change this file in any way, please make the same changes to any
// JSP file containing the following string: //**listAjax.jsp**//
out.write("\n");
out.write("\n");
out.write("\n");
out.write("\n");
out.write("\n");
out.write("\n");
out.write("\n");
out.write("\n");
out.write("\n");
out.write("\n");
out.write("\n");
out.write("\n");
out.write("\n");
final org.apache.commons.logging.Log logger = org.apache.commons.logging.LogFactory.getLog(getClass());
FlRequest flRequest = new FlRequest(request);
String code = flRequest.getRequestParameterOrAttribute("gridName");
if (code == null) {
String paramCode = flRequest.getRequestParameterOrAttribute("code");
String gn=((paramCode==null?"":paramCode) + "_gridname");
code = flRequest.getRequestParameterOrAttribute(gn);
if (code == null) {
code = paramCode;
}
}
GridData grid = (GridData)flRequest.getAttribute(code);
boolean isEmbedded = flRequest.getAttribute(code + "_Embedded") != null;
boolean isEmbedded2 = grid.isEmbedded();
String type = (String)flRequest.getAttribute("objSql");
if (type==null) {
type=(String)flRequest.getAttribute(code+"_objSql");
}
boolean fIsListEmbedded=isEmbedded || isEmbedded2;
FlContext context = flRequest.getContext();
EdealBigTabsNavigation bTabNav = new EdealBigTabsNavigation(flRequest);
bTabNav.setBigTabsParameterValue(BigTabsParams.SelectedTab, "1");
DataDictionary dico = context.getDataDictionary();
String pEditMode=flRequest.getParameter("editmode");
boolean fUpdateMode=("true".equals(pEditMode));
String pAllowUserUpdate=flRequest.getParameter("allowupdate");
boolean fAllowUpdate=("true".equals(pAllowUserUpdate));
// is preview to be displayed ?
String pDisplayPreview=flRequest.getSearchCriteria("$$preview");
boolean fDisplayPreview=("true".equals(pDisplayPreview));
String pGridHeight=flRequest.getParameter("gridheight");
EdealGrid edealGrid=new EdealGrid();
edealGrid.setName(code);
edealGrid.buildColumns(session, context, grid);
//boolean fAllowUpdate=true;
//boolean fUpdateMode=false;
int totalNbOfRecs=grid.getTotalNbOfRecords();
boolean fDisplayCounter=(totalNbOfRecs!=0);
int pageNumber=grid.getPageNumber()+1;
fAllowUpdate=fAllowUpdate && grid.isUpdatable();
if (fAllowUpdate) {
ActorBaseHelper actorHlpr=ActorBaseHelper.factory(ActorBaseHelper.getSessionActor(session));
fAllowUpdate=fAllowUpdate && actorHlpr.canUseObjectForOperation(type,AccessControlManager.EDIT);
}
String jsGridObject=bTabNav.getBigTabsParameterValue(BigTabsParams.NameSearchGridJs);
String[] updColumnFields=grid.getColumnUpdFld();
boolean canUpdateList=((updColumnFields!=null) && (updColumnFields.length>0));
// can we mass select entries ?
boolean isMassSelect=grid.isMassSelectable();
String previewToken=grid.getPreviewCacheToken();
ListPreviewCache.PreviewCache previewCache=null;
if (previewToken!=null) {
previewCache=ListPreviewCache.factory(flRequest.getSession()).getCache(previewToken);
}
if(grid.getNbRows()==0){
out.write('\n');
if (_jspx_meth_fl_005flabel_005f0(_jspx_page_context))
return;
out.write('\n');
}else{
int totalNbOfPages=1;
try {
if(totalNbOfRecs > grid.getNbLines()){
if(totalNbOfRecs % grid.getNbLines()>0){
totalNbOfPages=(totalNbOfRecs/grid.getNbLines())+1;
}
else{
totalNbOfPages=(totalNbOfRecs/grid.getNbLines());
}
}
} catch (ArithmeticException e) {//avoid / by
}
out.write("\n");
out.write("
\n");
out.write("
\n");
out.write("
\n");
out.write("\n");
out.write("\n");
out.write("
\n");
out.write("\t\n");
out.write("\t\t\n");
out.write("\t\t\t");
if (isMassSelect && !fIsListEmbedded) {
out.write("\n");
out.write("\t\t\t\t | \n");
out.write("\t\t\t");
}
out.write("\n");
out.write("\t\t ");
int formIndex=1;
for (EdealGridColumn gridColumn: edealGrid.getColumns()) {
if (gridColumn.getDataType() != null && !gridColumn.getDataType().equals(EdealGridColumn.DataType.PREVIEW)) {
out.write("\n");
out.write("\t\t\t\t");
out.print(gridColumn.getHeader(edealGrid.getJsGridName(),edealGrid.getName(),flRequest));
out.write("\n");
out.write("\t\t\t");
}
}
out.write("
\n");
out.write("\t\n");
out.write("\t");
ArrayList rowsId = grid.getRowsId();
//ArrayList previewValue = new ArrayList();
boolean oddRow = false;
ActorBean currentActor=ActorHelper.getSessionActor(session);
BasicBean rowBean;
int nbOfRows=grid.getData().length;
int tabindex=20;
int nbOfCols=0;
Object[][] gridRows=grid.getData();
for(int rowidx = 0; rowidx < nbOfRows; rowidx++) {
String id = "";
oddRow = !oddRow ;
String objectID="";
if (rowsId != null && rowsId.size()>0 && rowsId.get(rowidx) != null) {
objectID=rowsId.get(rowidx);
}
Boolean withPreview = false;
String previewTxt = "";
if (fDisplayPreview) {
previewTxt = (previewCache == null) ? null : previewCache.getPreviewForID(objectID);
if (!StringUtils.isEmpty(previewTxt)) {
withPreview = true;
}
}
out.write("\n");
out.write("\t\t\t\n");
out.write("\t\t\t");
if (isMassSelect && !fIsListEmbedded) {
out.write("\n");
out.write("\t\t\t\t | \n");
out.write("\t\t\t");
}
Object[] row = gridRows[rowidx];
boolean allowedToEdit =false;
if (fUpdateMode && canUpdateList) {
try {
rowBean= dico.getTable("sql",type).getBasicBean(objectID,session);
allowedToEdit=rowBean.enforceAccess(AccessControlManager.EDIT,currentActor);
if (allowedToEdit) {
request.setAttribute(type,rowBean);
}
} catch (FrontlineException e) {
logger.error("listAjax.jsp: cannot load bean ["+type+"]["+objectID+"]",e);
}
}
nbOfCols=row.length;
for (int colidx = 0; colidx < row.length; colidx++) {
EdealGridColumn eGCol = edealGrid.getColumn(colidx);
if (allowedToEdit && updColumnFields[colidx]!=null) {
String fieldsToBeUpdated=updColumnFields[colidx];
Vector vFieldsToBeUpdated=(Vector)Utils.explodeList(fieldsToBeUpdated,";");
Enumeration enumFieldsToBeUpdated=vFieldsToBeUpdated.elements();
out.write("\n");
out.write("\t\t\t\t\t\t\n");
out.write("\t\t\t\t\t\t\t");
while (enumFieldsToBeUpdated.hasMoreElements()) {
String fieldName=enumFieldsToBeUpdated.nextElement();
String eraseJs="eraseField('"+fieldName+"-"+objectID+"')";
out.write("\n");
out.write("\t\t\t\t\t\t\t\n");
out.write("\t\t\t\t\t\t\t\t \n");
out.write("\t\t\t\t\t\t\t\t\t");
// fl:input
com.edeal.frontline.GetInputTag _jspx_th_fl_005finput_005f0 = (com.edeal.frontline.GetInputTag) _005fjspx_005ftagPool_005ffl_005finput_0026_005fproperty_005fondelete_005fnodiv_005fid_005falt_005fnobody.get(com.edeal.frontline.GetInputTag.class);
_jspx_th_fl_005finput_005f0.setPageContext(_jspx_page_context);
_jspx_th_fl_005finput_005f0.setParent(null);
// /common/list/listAjax.jsp(272,9) name = property type = null reqTime = true required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_fl_005finput_005f0.setProperty(fieldName);
// /common/list/listAjax.jsp(272,9) name = id type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_fl_005finput_005f0.setId(fieldName+"-"+objectID);
// /common/list/listAjax.jsp(272,9) name = ondelete type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_fl_005finput_005f0.setOndelete(eraseJs);
// /common/list/listAjax.jsp(272,9) name = nodiv type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_fl_005finput_005f0.setNodiv(true);
// /common/list/listAjax.jsp(272,9) name = alt type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_fl_005finput_005f0.setAlt(" ");
int _jspx_eval_fl_005finput_005f0 = _jspx_th_fl_005finput_005f0.doStartTag();
if (_jspx_th_fl_005finput_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
_005fjspx_005ftagPool_005ffl_005finput_0026_005fproperty_005fondelete_005fnodiv_005fid_005falt_005fnobody.reuse(_jspx_th_fl_005finput_005f0);
return;
}
_005fjspx_005ftagPool_005ffl_005finput_0026_005fproperty_005fondelete_005fnodiv_005fid_005falt_005fnobody.reuse(_jspx_th_fl_005finput_005f0);
out.write("\n");
out.write("\t\t\t\t\t\t\t\t \n");
out.write("\t\t\t\t\t\t\t | \n");
out.write("\t\t\t\t\t\t\t");
formIndex++;
}
out.write("\n");
out.write("\t\t\t\t\t\t
| \n");
out.write("\t\t\t\t\t");
} else {
out.write("\n");
out.write("\t\t\t\t\t\t");
out.print( eGCol.advancedFormatWithTD(row[colidx], withPreview) );
out.write("\n");
out.write("\t\t\t\t\t");
}
}
out.write("
\n");
out.write("\t\t\t");
if (withPreview) {
out.write("\n");
out.write("\t\t\t\n");
out.write("\t\t\t\t");
out.print( ListHelper.previewFormatWithTD(nbOfCols, previewTxt, row[0]) );
out.write("\n");
out.write("\t\t\t
\n");
out.write("\t\t\t");
}
}
if (type!=null && request.getAttribute(type)!=null) {
request.removeAttribute(type);
}
out.write("\n");
out.write("\t\n");
out.write("
\n");
out.write("
\n");
out.write("\n");
out.write("\n");
out.write("\n");
}
out.write('\n');
} catch (Throwable t) {
if (!(t instanceof SkipPageException)){
out = _jspx_out;
if (out != null && out.getBufferSize() != 0)
try { out.clearBuffer(); } catch (java.io.IOException e) {}
if (_jspx_page_context != null) _jspx_page_context.handlePageException(t);
else log(t.getMessage(), t);
}
} finally {
_jspxFactory.releasePageContext(_jspx_page_context);
}
}
private boolean _jspx_meth_fl_005flabel_005f0(PageContext _jspx_page_context)
throws Throwable {
PageContext pageContext = _jspx_page_context;
JspWriter out = _jspx_page_context.getOut();
// fl:label
com.edeal.frontline.navigation.LabelTag _jspx_th_fl_005flabel_005f0 = (com.edeal.frontline.navigation.LabelTag) _005fjspx_005ftagPool_005ffl_005flabel_0026_005flabel_005fcode_005fnobody.get(com.edeal.frontline.navigation.LabelTag.class);
_jspx_th_fl_005flabel_005f0.setPageContext(_jspx_page_context);
_jspx_th_fl_005flabel_005f0.setParent(null);
// /common/list/listAjax.jsp(118,0) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_fl_005flabel_005f0.setCode("L0001");
// /common/list/listAjax.jsp(118,0) name = label type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_fl_005flabel_005f0.setLabel("Aucune entrée disponible ");
int _jspx_eval_fl_005flabel_005f0 = _jspx_th_fl_005flabel_005f0.doStartTag();
if (_jspx_th_fl_005flabel_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
_005fjspx_005ftagPool_005ffl_005flabel_0026_005flabel_005fcode_005fnobody.reuse(_jspx_th_fl_005flabel_005f0);
return true;
}
_005fjspx_005ftagPool_005ffl_005flabel_0026_005flabel_005fcode_005fnobody.reuse(_jspx_th_fl_005flabel_005f0);
return false;
}
private boolean _jspx_meth_fl_005fwebapp_005f0(PageContext _jspx_page_context)
throws Throwable {
PageContext pageContext = _jspx_page_context;
JspWriter out = _jspx_page_context.getOut();
// fl:webapp
com.edeal.frontline.WebappTag _jspx_th_fl_005fwebapp_005f0 = (com.edeal.frontline.WebappTag) _005fjspx_005ftagPool_005ffl_005fwebapp_005fnobody.get(com.edeal.frontline.WebappTag.class);
_jspx_th_fl_005fwebapp_005f0.setPageContext(_jspx_page_context);
_jspx_th_fl_005fwebapp_005f0.setParent(null);
int _jspx_eval_fl_005fwebapp_005f0 = _jspx_th_fl_005fwebapp_005f0.doStartTag();
if (_jspx_th_fl_005fwebapp_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
_005fjspx_005ftagPool_005ffl_005fwebapp_005fnobody.reuse(_jspx_th_fl_005fwebapp_005f0);
return true;
}
_005fjspx_005ftagPool_005ffl_005fwebapp_005fnobody.reuse(_jspx_th_fl_005fwebapp_005f0);
return false;
}
private boolean _jspx_meth_fl_005fwebapp_005f1(PageContext _jspx_page_context)
throws Throwable {
PageContext pageContext = _jspx_page_context;
JspWriter out = _jspx_page_context.getOut();
// fl:webapp
com.edeal.frontline.WebappTag _jspx_th_fl_005fwebapp_005f1 = (com.edeal.frontline.WebappTag) _005fjspx_005ftagPool_005ffl_005fwebapp_005fnobody.get(com.edeal.frontline.WebappTag.class);
_jspx_th_fl_005fwebapp_005f1.setPageContext(_jspx_page_context);
_jspx_th_fl_005fwebapp_005f1.setParent(null);
int _jspx_eval_fl_005fwebapp_005f1 = _jspx_th_fl_005fwebapp_005f1.doStartTag();
if (_jspx_th_fl_005fwebapp_005f1.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
_005fjspx_005ftagPool_005ffl_005fwebapp_005fnobody.reuse(_jspx_th_fl_005fwebapp_005f1);
return true;
}
_005fjspx_005ftagPool_005ffl_005fwebapp_005fnobody.reuse(_jspx_th_fl_005fwebapp_005f1);
return false;
}
private boolean _jspx_meth_fl_005fwebapp_005f2(PageContext _jspx_page_context)
throws Throwable {
PageContext pageContext = _jspx_page_context;
JspWriter out = _jspx_page_context.getOut();
// fl:webapp
com.edeal.frontline.WebappTag _jspx_th_fl_005fwebapp_005f2 = (com.edeal.frontline.WebappTag) _005fjspx_005ftagPool_005ffl_005fwebapp_005fnobody.get(com.edeal.frontline.WebappTag.class);
_jspx_th_fl_005fwebapp_005f2.setPageContext(_jspx_page_context);
_jspx_th_fl_005fwebapp_005f2.setParent(null);
int _jspx_eval_fl_005fwebapp_005f2 = _jspx_th_fl_005fwebapp_005f2.doStartTag();
if (_jspx_th_fl_005fwebapp_005f2.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
_005fjspx_005ftagPool_005ffl_005fwebapp_005fnobody.reuse(_jspx_th_fl_005fwebapp_005f2);
return true;
}
_005fjspx_005ftagPool_005ffl_005fwebapp_005fnobody.reuse(_jspx_th_fl_005fwebapp_005f2);
return false;
}
private boolean _jspx_meth_fl_005fwebapp_005f3(PageContext _jspx_page_context)
throws Throwable {
PageContext pageContext = _jspx_page_context;
JspWriter out = _jspx_page_context.getOut();
// fl:webapp
com.edeal.frontline.WebappTag _jspx_th_fl_005fwebapp_005f3 = (com.edeal.frontline.WebappTag) _005fjspx_005ftagPool_005ffl_005fwebapp_005fnobody.get(com.edeal.frontline.WebappTag.class);
_jspx_th_fl_005fwebapp_005f3.setPageContext(_jspx_page_context);
_jspx_th_fl_005fwebapp_005f3.setParent(null);
int _jspx_eval_fl_005fwebapp_005f3 = _jspx_th_fl_005fwebapp_005f3.doStartTag();
if (_jspx_th_fl_005fwebapp_005f3.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
_005fjspx_005ftagPool_005ffl_005fwebapp_005fnobody.reuse(_jspx_th_fl_005fwebapp_005f3);
return true;
}
_005fjspx_005ftagPool_005ffl_005fwebapp_005fnobody.reuse(_jspx_th_fl_005fwebapp_005f3);
return false;
}
private boolean _jspx_meth_fl_005fgetMessage_005f0(PageContext _jspx_page_context)
throws Throwable {
PageContext pageContext = _jspx_page_context;
JspWriter out = _jspx_page_context.getOut();
// fl:getMessage
com.edeal.frontline.GetMessageTag _jspx_th_fl_005fgetMessage_005f0 = (com.edeal.frontline.GetMessageTag) _005fjspx_005ftagPool_005ffl_005fgetMessage_0026_005fcode_005falt_005fnobody.get(com.edeal.frontline.GetMessageTag.class);
_jspx_th_fl_005fgetMessage_005f0.setPageContext(_jspx_page_context);
_jspx_th_fl_005fgetMessage_005f0.setParent(null);
// /common/list/listAjax.jsp(178,109) name = code type = null reqTime = true required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_fl_005fgetMessage_005f0.setCode("A0008");
// /common/list/listAjax.jsp(178,109) name = alt type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_fl_005fgetMessage_005f0.setAlt("Modifier");
int _jspx_eval_fl_005fgetMessage_005f0 = _jspx_th_fl_005fgetMessage_005f0.doStartTag();
if (_jspx_th_fl_005fgetMessage_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
_005fjspx_005ftagPool_005ffl_005fgetMessage_0026_005fcode_005falt_005fnobody.reuse(_jspx_th_fl_005fgetMessage_005f0);
return true;
}
_005fjspx_005ftagPool_005ffl_005fgetMessage_0026_005fcode_005falt_005fnobody.reuse(_jspx_th_fl_005fgetMessage_005f0);
return false;
}
private boolean _jspx_meth_fl_005fgetMessage_005f1(PageContext _jspx_page_context)
throws Throwable {
PageContext pageContext = _jspx_page_context;
JspWriter out = _jspx_page_context.getOut();
// fl:getMessage
com.edeal.frontline.GetMessageTag _jspx_th_fl_005fgetMessage_005f1 = (com.edeal.frontline.GetMessageTag) _005fjspx_005ftagPool_005ffl_005fgetMessage_0026_005fcode_005falt_005fnobody.get(com.edeal.frontline.GetMessageTag.class);
_jspx_th_fl_005fgetMessage_005f1.setPageContext(_jspx_page_context);
_jspx_th_fl_005fgetMessage_005f1.setParent(null);
// /common/list/listAjax.jsp(184,118) name = code type = null reqTime = true required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_fl_005fgetMessage_005f1.setCode("A0003");
// /common/list/listAjax.jsp(184,118) name = alt type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_fl_005fgetMessage_005f1.setAlt("Enregistrer");
int _jspx_eval_fl_005fgetMessage_005f1 = _jspx_th_fl_005fgetMessage_005f1.doStartTag();
if (_jspx_th_fl_005fgetMessage_005f1.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
_005fjspx_005ftagPool_005ffl_005fgetMessage_0026_005fcode_005falt_005fnobody.reuse(_jspx_th_fl_005fgetMessage_005f1);
return true;
}
_005fjspx_005ftagPool_005ffl_005fgetMessage_0026_005fcode_005falt_005fnobody.reuse(_jspx_th_fl_005fgetMessage_005f1);
return false;
}
private boolean _jspx_meth_fl_005fgetMessage_005f2(PageContext _jspx_page_context)
throws Throwable {
PageContext pageContext = _jspx_page_context;
JspWriter out = _jspx_page_context.getOut();
// fl:getMessage
com.edeal.frontline.GetMessageTag _jspx_th_fl_005fgetMessage_005f2 = (com.edeal.frontline.GetMessageTag) _005fjspx_005ftagPool_005ffl_005fgetMessage_0026_005fcode_005falt_005fnobody.get(com.edeal.frontline.GetMessageTag.class);
_jspx_th_fl_005fgetMessage_005f2.setPageContext(_jspx_page_context);
_jspx_th_fl_005fgetMessage_005f2.setParent(null);
// /common/list/listAjax.jsp(185,98) name = code type = null reqTime = true required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_fl_005fgetMessage_005f2.setCode("A2002");
// /common/list/listAjax.jsp(185,98) name = alt type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_fl_005fgetMessage_005f2.setAlt("Annuler");
int _jspx_eval_fl_005fgetMessage_005f2 = _jspx_th_fl_005fgetMessage_005f2.doStartTag();
if (_jspx_th_fl_005fgetMessage_005f2.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
_005fjspx_005ftagPool_005ffl_005fgetMessage_0026_005fcode_005falt_005fnobody.reuse(_jspx_th_fl_005fgetMessage_005f2);
return true;
}
_005fjspx_005ftagPool_005ffl_005fgetMessage_0026_005fcode_005falt_005fnobody.reuse(_jspx_th_fl_005fgetMessage_005f2);
return false;
}
}