final DefaultTagDescription tagDescription = new DefaultTagDescription();
tagDescription.setNamespaceHasCData(null, false);
final XmlWriter writer = new XmlWriter(new OutputStreamWriter(System.out), tagDescription);
writer.writeComment("Table Layout: ");
writer.writeComment("Rows: " + sheetLayout.getRowCount());
writer.writeComment("Columns: " + sheetLayout.getColumnCount());
final int rows = sheetLayout.getRowCount();
final int cols = sheetLayout.getColumnCount();
writer.writeTag(null, "table", XmlWriter.OPEN);
for (int row = 0; row < rows; row++)