Package com.opensymphony.module.sitemesh.multipass

Source Code of com.opensymphony.module.sitemesh.multipass.ExtractPropertyTag

package com.opensymphony.module.sitemesh.multipass;

import com.opensymphony.module.sitemesh.taglib.decorator.PropertyTag;
import com.opensymphony.module.sitemesh.Page;

public class ExtractPropertyTag extends PropertyTag {

    public int doEndTag() {
        Page page = getPage();
        page.addProperty("_sitemesh.removefrompage." + getProperty(), "true");
        return super.doEndTag();
    }

}
TOP

Related Classes of com.opensymphony.module.sitemesh.multipass.ExtractPropertyTag

TOP
Copyright © 2018 www.massapi.com. 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.