* @throws IOException for I/O problems
*/
public RtfHeader startHeader()
throws IOException {
if (header != null) {
throw new RtfStructureException("startHeader called more than once");
}
header = new RtfHeader(this, writer);
listTableContainer = new RtfContainer(this, writer);
return header;
}