Package org.apache.maven.continuum.web.components

Examples of org.apache.maven.continuum.web.components.Data


    protected String valueLink;

    public Component getBean( ValueStack stack, HttpServletRequest req, HttpServletResponse res )
    {
        return new Data( stack, req, res );
    }
View Full Code Here


    protected void populateParams()
    {
        super.populateParams();

        Data dataBean = (Data) this.component;
        dataBean.setValueLink( valueLink );
    }
View Full Code Here

    protected String valueLink;

    public Component getBean( OgnlValueStack stack, HttpServletRequest req, HttpServletResponse res )
    {
        return new Data( stack, req, res );
    }
View Full Code Here

    protected void populateParams()
    {
        super.populateParams();

        Data dataBean = (Data) this.component;
        dataBean.setValueLink( valueLink );
    }
View Full Code Here

TOP

Related Classes of org.apache.maven.continuum.web.components.Data

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.