public VT220Terminal( final int columns, final int lines )
{
super( columns, lines );
m_graphicSetState = new GraphicSetState();
m_vt220parser = new VT220Parser();
m_savedState = new StateHolder();
// Make sure the terminal is in a known state...
reset();
}