Adding Accessor Methods for Labels

Add the below methods to EquipWorkOrderDC.java. These methods access the label map at runtime to retrieve the text that will be displayed on the page.

    public String getChartXAxisTitle()
    {
        if (groupByFilter.equals(GROUP_BY_EQUIP_NUM))
        {
            return labels.get(EQUIP_NUMBER_KEY);
        }
        else if (groupByFilter.equals(GROUP_BY_ASSIGNED_TO))
        {
            return labels.get(ASSIGNED_TO_KEY);
        }
        else
        {
            return labels.get(SUPERVISOR_KEY);
        }
    }
 
    public String getChartYAxisTitle()
    {
        return labels.get(HOURS_KEY);
    }
 
    public String getEquipmentNumberItemText()
    {
        return labels.get(EQUIP_NUMBER_KEY);
    }
 
    public String getAssignedToItemText()
    {
        return labels.get(ASSIGNED_TO_KEY);
    }
 
    public String getSupervisorItemText()
    {
        return labels.get(SUPERVISOR_KEY);
    }
 
    public String getOverstatedChartTitle()
    {
        return labels.get(IN_PROC_WO_TITLE_KEY);
    }
 
    public String getUnderStatedChartTitle()
    {
    }
        return labels.get(COMP_WO_TITLE_KEY);