Package xbird.util.csv

Examples of xbird.util.csv.CsvWriter


    }

    public ProfiledDocumentTable(File f) {
        System.err.println("Access pattern to the XMLDocumentTable is profiled to "
                + f.getAbsolutePath());
        final CsvWriter csv = new CsvWriter(f);
        csv.writeRow("page");
        this._csv = csv;
    }
View Full Code Here


    public ProfiledPersistentDocumentTable(String file, DbCollection coll, String docName, PropertyMap docProps) {
        super(coll, docName, docProps);
        File f = new File(file);
        System.err.println("Access pattern to the XMLDocumentTable is profiled to "
                + f.getAbsolutePath());
        final CsvWriter csv = new CsvWriter(f);
        csv.writeRow("page");
        this._csv = csv;
    }
View Full Code Here

TOP

Related Classes of xbird.util.csv.CsvWriter

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.