Package org.apache.jetspeed.portal

Examples of org.apache.jetspeed.portal.PortletControllerConfig


    /**
    */
    public void init() {
        super.init();
        PortletControllerConfig conf = getConfig();
       
        if (conf!=null) {
            setColumn(Integer.parseInt(conf.getInitParameter("column","0")));
            setRow(Integer.parseInt(conf.getInitParameter("row","0")));
            setColumnsWidth(parseList(conf.getInitParameter("columnWidths")));
            setRowsHeight(parseList(conf.getInitParameter("rowHeights")));
        }
           
    }
View Full Code Here

TOP

Related Classes of org.apache.jetspeed.portal.PortletControllerConfig

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.