All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.jgeppert.struts2.jquery.views.jsp.ui.AnchorTag Maven / Gradle / Ivy

There is a newer version: 5.0.3
Show newest version
/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 *
 *  http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.
 */

package com.jgeppert.struts2.jquery.views.jsp.ui;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import org.apache.struts2.components.Component;

import com.jgeppert.struts2.jquery.components.Anchor;
import com.opensymphony.xwork2.util.ValueStack;

/**
 * @see Anchor
 * @author Johannes Geppert
 */
public class AnchorTag extends AbstractRemoteTag implements ButtonTag {

    private static final long serialVersionUID = -1034616578492431113L;

    protected String openDialog;
    protected String openDialogTitle;
    protected String onClickTopics;
    protected String button;
    protected String buttonIcon;
    protected String buttonIconSecondary;
    protected String buttonText;
    protected String validateFunction;
    protected String validate;
    protected String clearForm;
    protected String resetForm;
    protected String iframe;
    protected String replaceTarget;

    public Component getBean(ValueStack stack, HttpServletRequest req,
	    HttpServletResponse res) {
	return new Anchor(stack, req, res);
    }

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

	Anchor link = (Anchor) component;
	link.setOpenDialog(openDialog);
	link.setOpenDialogTitle(openDialogTitle);
	link.setOnClickTopics(onClickTopics);
	link.setButton(button);
	link.setButtonIcon(buttonIcon);
	link.setButtonIconSecondary(buttonIconSecondary);
	link.setButtonText(buttonText);
	link.setValidateFunction(validateFunction);
	link.setValidate(validate);
	link.setClearForm(clearForm);
	link.setResetForm(resetForm);
	link.setIframe(iframe);
	link.setReplaceTarget(replaceTarget);
    }

    public void setOpenDialog(String openDialog) {
	this.openDialog = openDialog;
    }

    public void setOpenDialogTitle(String openDialogTitle) {
        this.openDialogTitle = openDialogTitle;
    }

    public void setOnClickTopics(String onClickTopics) {
	this.onClickTopics = onClickTopics;
    }

    public void setButton(String button) {
	this.button = button;
    }

    public void setButtonIcon(String buttonIcon) {
	this.buttonIcon = buttonIcon;
    }

    public void setButtonIconSecondary(String buttonIconSecondary) {
	this.buttonIconSecondary = buttonIconSecondary;
    }

    public void setButtonText(String buttonText) {
	this.buttonText = buttonText;
    }

    public void setValidateFunction(String validateFunction) {
	this.validateFunction = validateFunction;
    }

    public void setValidate(String validate) {
	this.validate = validate;
    }

    public void setClearForm(String clearForm) {
        this.clearForm = clearForm;
    }

    public void setResetForm(String resetForm) {
        this.resetForm = resetForm;
    }

    public void setIframe(String iframe) {
        this.iframe = iframe;
    }

    public void setReplaceTarget(String replaceTarget) {
        this.replaceTarget = replaceTarget;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy