Package net.sourceforge.stripes.action

Examples of net.sourceforge.stripes.action.StreamingResolution


    /**
     * Zobrazi kolacovy graf podle kategorii prace
     * @return
     */
    public Resolution getThesesCategoriesGraph() {
        return new StreamingResolution("image/png", chartGenerator.getChart(ChartTypes.CATEGORIES_CHART));

    }
View Full Code Here


    /**
     * Zobrazi kolacovy graf podle oboru studia
     * @return
     */
    public Resolution getFieldsOfStudyGraph() {
        return new StreamingResolution("image/png", chartGenerator.getChart(ChartTypes.FIELDS_CHART));
    }
View Full Code Here

    /**
     * Zobrazi kolacovy graf podle formy studia
     * @return
     */
    public Resolution getFormsOfStudyGraph() {
        return new StreamingResolution("image/png", chartGenerator.getChart(ChartTypes.FORMS_CHART));
    }
View Full Code Here

    /**
     * Zobrazi sloupcovy graf poctu praci v jednotlivych letech
     * @return
     */
    public Resolution getThesesByYears() {
        return new StreamingResolution("image/png", chartGenerator.getChart(ChartTypes.YEARS_CHART));
    }
View Full Code Here

    /**
     * Zobrazi sloupcovy graf, kde pro kazdy rok bude pocet praci v kazde kategorii prace
     * @return
     */
    public Resolution getThesesByYearsAndCategory() {
        return new StreamingResolution("image/png", chartGenerator.getChart(ChartTypes.YEARS_AND_CATEGORIES_CHART));
    }
View Full Code Here

    /**
     * * Zobrazi sloupcovy graf, kde pro kazdy rok bude pocet praci v kazdem oboru studia
     * @return
     */
    public Resolution getThesesByYearAndFieldOfStudy() {
       return new StreamingResolution("image/png", chartGenerator.getChart(ChartTypes.YEARS_AND_FIELDS_CHART));
    }
View Full Code Here

    /**
     * Zobrazi kolacovy graf, kde bude kazda kombinace obor / typ prace a procento z celkoveho poctu praci
     * @return
     */
    public Resolution getFieldsAndCategoriesGraph() {
        return new StreamingResolution("image/png", chartGenerator.getChart(ChartTypes.CATEGORIES_AND_FIELDS_CHART));
    }
View Full Code Here

    public Resolution show() {
        return new ForwardResolution("/WEB-INF/pages/secure/thesesStatistics.jsp");
    }

    public Resolution getUncompleteMetadataGraph() {
        return new StreamingResolution("image/png", chartGenerator.getChart(ChartTypes.UNCOMPLETE_METADATA_CHART));
    }
View Full Code Here

    public Resolution getUncompleteMetadataGraph() {
        return new StreamingResolution("image/png", chartGenerator.getChart(ChartTypes.UNCOMPLETE_METADATA_CHART));
    }

    public Resolution getMissingDataGraph() {
        return new StreamingResolution("image/png", chartGenerator.getChart(ChartTypes.MISSING_DATA_CHART));
    }
View Full Code Here

        return new StreamingResolution("image/png", chartGenerator.getChart(ChartTypes.MISSING_DATA_CHART));
    }


    public Resolution getNotSelectedDocumentationGraph() {
        return new StreamingResolution("image/png", chartGenerator.getChart(ChartTypes.NOT_SELECTED_DOCUMENTATION_CHART));
    }
View Full Code Here

TOP

Related Classes of net.sourceforge.stripes.action.StreamingResolution

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.