%-- IBM Confidential OCO Source Material --%>
<%-- 5724-J34 (C) COPYRIGHT International Business Machines Corp. 2005 --%>
<%-- The source code for this program is not published or otherwise divested --%>
<%-- of its trade secrets, irrespective of what has been deposited with the --%>
<%-- U.S. Copyright Office. --%>
<%@ page language="java" import="java.util.*,com.ibm.ws.console.workclass.form.WorkClassDetailForm"%>
<%@ taglib uri="/WEB-INF/ibmcommon.tld" prefix="ibmcommon" %>
<%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %>
<%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %>
<%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic" %>
<%@ taglib uri="/WEB-INF/tiles.tld" prefix="tiles" %>
<%@ taglib uri="/WEB-INF/ibmcommon.tld" prefix="ibmcommon" %>
<% // defect 126608
String image = "";
String pluginId = "";
String pluginRoot = "";
if (descImage != "")
{
int index = descImage.indexOf ("pluginId=");
if (index >= 0)
{
pluginId = descImage.substring (index + 9);
if (index != 0)
descImage = descImage.substring (0, index);
else
descImage = "";
}
else
{
index = descImage.indexOf ("pluginContextRoot=");
if (index >= 0)
{
pluginRoot = descImage.substring (index + 18);
if (index != 0)
descImage = descImage.substring (0, index);
else
descImage = "";
}
}
}
%>
<%
WorkClassDetailForm testForm = (WorkClassDetailForm)session.getAttribute("WorkClassDetailForm");
String selectedTC = testForm.getSelectedTC();
String fieldLevelHelpTopic = "";
String fieldLevelHelpAttribute = "";
String DETAILFORM = "DetailForm";
String objectType = "";
int index = formType.lastIndexOf ('.');
if (index > 0)
{
String fType = formType.substring (index+1);
if (fType.endsWith (DETAILFORM))
objectType = fType.substring (0, fType.length()-DETAILFORM.length());
else
objectType = fType;
}
fieldLevelHelpTopic = objectType+".detail.";
String topicKey = fieldLevelHelpTopic;
//pageContext.setAttribute("tcBean", tcNames);
%>
|
<%
fieldLevelHelpTopic = topicKey + "name";
%>