Sophie

Sophie

distrib > Mandriva > 2007.0 > i586 > media > contrib-release > by-pkgid > 29e0da3ddcddab73ae8621fc62033227 > files > 228

itext-manual-1.4.5-1mdv2007.0.i586.rpm

/*
 * $Id: NestedTables.java,v 1.3 2005/05/09 11:52:47 blowagie Exp $
 * $Name:  $
 *
 * This code is part of the 'iText Tutorial'.
 * You can find the complete tutorial at the following address:
 * http://itextdocs.lowagie.com/tutorial/
 *
 * This code is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 *
 * itext-questions@lists.sourceforge.net
 */
package com.lowagie.examples.objects.tables;

import java.io.FileOutputStream;

import com.lowagie.text.Document;
import com.lowagie.text.PageSize;
import com.lowagie.text.pdf.PdfPTable;
import com.lowagie.text.pdf.PdfWriter;

/**
 * Demonstrates the use of nested tables.
 */
public class NestedTables {

	/**
	 * Using nested tables.
	 * 
	 * @param args
	 *            no arguments needed
	 */
	public static void main(String[] args) {

		System.out.println("Nested Tables");
		// step1
		Document document = new Document(PageSize.A4.rotate(), 10, 10, 10, 10);
		try {
			// step2
			PdfWriter writer = PdfWriter.getInstance(document,
					new FileOutputStream("NestedTables.pdf"));
			// step3
			document.open();
			// step4
            PdfPTable table = new PdfPTable(4);
            PdfPTable nested1 = new PdfPTable(2);
            nested1.addCell("1.1");
            nested1.addCell("1.2");
            PdfPTable nested2 = new PdfPTable(1);
            nested2.addCell("2.1");
            nested2.addCell("2.2");
            for (int k = 0; k < 24; ++k) {
                if (k == 1) {
                    table.addCell(nested1);
                }
                else if (k == 20) {
                    table.addCell(nested2);
                }
                else {
                    table.addCell("cell " + k);
                }
            }
            document.add(table);
            // step 5: we close the document
            document.close();
		} catch (Exception de) {
			de.printStackTrace();
		}
		// step5
		document.close();
	}
}