New Token object with a type and value m_type = type; m_value = value;
m_type = type; m_value = value;
Get the type of the token return m_type;
return m_type;
Get the value of the token return m_value;
return m_value;
Convert to a string return new StringBuffer().append(m_type).append(":").append(m_value).toString();
return new StringBuffer().append(m_type).append(":").append(m_value).toString();