* @param field the index number of the field to be retrieved
* @return the value of the required field
*/
public ProjectTimeFormat getTimeFormat(int field)
{
ProjectTimeFormat result;
if ((field < m_fields.length) && (m_fields[field].length() != 0))
{
result = ProjectTimeFormat.getInstance(Integer.parseInt(m_fields[field]));
}