Package pt.ist.fenixWebFramework.renderers.CollectionRenderer

Examples of pt.ist.fenixWebFramework.renderers.CollectionRenderer.TableLink


    public void setPublishedClass(String publishedClass) {
        this.publishedClass = publishedClass;
    }

    private TableLink getTableLink(String name) {
        TableLink tableLink = this.links.get(name);

        if (tableLink == null) {
            tableLink = new TableLink(name);

            this.links.put(name, tableLink);
            this.sortedLinks.add(tableLink);
        }
View Full Code Here


        protected HtmlComponent getLinks(CompetenceCourse course) {
            HtmlInlineContainer container = new HtmlInlineContainer();
            int total = sortedLinks.size();
            for (int i = 0; i < total; i++) {
                TableLink tableLink = getTableLink(i);
                container.addChild(tableLink.generateLink(course));
                if (i + 1 < total) {
                    container.addChild(new HtmlText(getLinkGroupSeparator()));
                }
            }
            container.setIndented(false);
View Full Code Here

TOP

Related Classes of pt.ist.fenixWebFramework.renderers.CollectionRenderer.TableLink

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.