int i = t.indexOf(":");
if (i > 0)
{
String ident = t.substring(0, i);
LineFigure lineFigure = null;
if (ident.equalsIgnoreCase("vline"))
{
lineFigure = new VLineFigure(this);
}
else if (ident.equalsIgnoreCase("hline"))
{
lineFigure = new HLineFigure(this);
}
if (lineFigure != null)
{
lineFigure.decodeGeometry(t.substring(i + 1));
add(lineFigure);
}
}
}
}