Index: lams_tool_lamc/src/java/org/lamsfoundation/lams/tool/mc/web/McMonitoringForm.java =================================================================== diff -u -rce4fe4bfc7718d632a5e2f5d87fe96e543443daa -rcaa308bc0c886ecbdf587b0a327a3d3ccbce170f --- lams_tool_lamc/src/java/org/lamsfoundation/lams/tool/mc/web/McMonitoringForm.java (.../McMonitoringForm.java) (revision ce4fe4bfc7718d632a5e2f5d87fe96e543443daa) +++ lams_tool_lamc/src/java/org/lamsfoundation/lams/tool/mc/web/McMonitoringForm.java (.../McMonitoringForm.java) (revision caa308bc0c886ecbdf587b0a327a3d3ccbce170f) @@ -10,8 +10,8 @@ * ActionForm for the Monitoring environment */ public class McMonitoringForm extends ActionForm implements McAppConstants { - // dsp controls which method is called by the Lookup map */ - protected String dsp; + // controls which method is called by the Lookup map */ + protected String method; protected String selectedToolSessionId; @@ -43,15 +43,15 @@ } /** - * @return Returns the dsp. + * @return Returns the method. */ - public String getDsp() { - return dsp; + public String getMethod() { + return method; } /** - * @param dsp The dsp to set. + * @param method The method to set. */ - public void setDsp(String dsp) { - this.dsp = dsp; + public void setMethod(String method) { + this.method = method; } }