Package org.apache.rat.report

Examples of org.apache.rat.report.IReportable


     * @since Rat 0.8
     */
    public ClaimStatistic report(PrintStream out,
                                 ReportConfiguration configuration)
        throws Exception {
        final IReportable base = getDirectory(out);
        if (base != null) {
            return report(base, new OutputStreamWriter(out), configuration);
        }
        return null;
    }
View Full Code Here


     * @since Rat 0.8
     */
    public void styleReport(PrintStream out,
                            ReportConfiguration configuration)
        throws Exception {
        final IReportable base = getDirectory(out);
        if (base != null) {
            InputStream style = Defaults.getDefaultStyleSheet();
            report(out, base, style, configuration);
        }
    }
View Full Code Here

     * @since RAT 0.8
     */
    public ClaimStatistic report(PrintStream out,
                                 ReportConfiguration configuration)
        throws Exception {
        final IReportable base = getDirectory(out);
        if (base != null) {
            return report(base, new OutputStreamWriter(out), configuration);
        }
        return null;
    }
View Full Code Here

     * @since RAT 0.8
     */
    public void styleReport(PrintStream out,
                            ReportConfiguration configuration)
        throws Exception {
        final IReportable base = getDirectory(out);
        if (base != null) {
            InputStream style = Defaults.getDefaultStyleSheet();
            report(out, base, style, configuration);
        }
    }
View Full Code Here

     * @return the currently collected numerical statistics.
     */
    public ClaimStatistic report(PrintStream out,
                                 ReportConfiguration configuration)
        throws Exception {
        final IReportable base = getDirectory(out);
        if (base != null) {
            return report(base, new OutputStreamWriter(out), configuration);
        }
        return null;
    }
View Full Code Here

     * @since Rat 0.8
     */
    public void styleReport(PrintStream out,
                            ReportConfiguration configuration)
        throws Exception {
        final IReportable base = getDirectory(out);
        if (base != null) {
            InputStream style = Defaults.getDefaultStyleSheet();
            report(out, base, style, configuration);
        }
    }
View Full Code Here

    public void setInputFileFilter(FilenameFilter inputFileFilter) {
        this.inputFileFilter = inputFileFilter;
    }

    public ClaimStatistic report(PrintStream out) throws Exception {
        final IReportable base = getDirectory(out);
        if (base != null) {
            final ReportConfiguration configuration = new ReportConfiguration();
            configuration.setHeaderMatcher(Defaults.createDefaultMatcher());
            return report(base, new OutputStreamWriter(out), configuration);
        }
View Full Code Here

     *
     * @param out - the output stream to recieve the styled report
     * @throws Exception
     */
    public void styleReport(PrintStream out) throws Exception {
        final IReportable base = getDirectory(out);
        if (base != null) {
            InputStream style = Defaults.getDefaultStyleSheet();
            final ReportConfiguration configuration = new ReportConfiguration();
            configuration.setHeaderMatcher(Defaults.createDefaultMatcher());
            report(out, base, style, configuration);
View Full Code Here

     * @since Rat 0.8
     */
    public ClaimStatistic report(PrintStream out,
                                 ReportConfiguration configuration)
        throws Exception {
        final IReportable base = getDirectory(out);
        if (base != null) {
            return report(base, new OutputStreamWriter(out), configuration);
        }
        return null;
    }
View Full Code Here

     * @since Rat 0.8
     */
    public void styleReport(PrintStream out,
                            ReportConfiguration configuration)
        throws Exception {
        final IReportable base = getDirectory(out);
        if (base != null) {
            InputStream style = Defaults.getDefaultStyleSheet();
            report(out, base, style, configuration);
        }
    }
View Full Code Here

TOP

Related Classes of org.apache.rat.report.IReportable

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.