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

us.jts.commander.AjaxUpdateEvent Maven / Gradle / Ivy

There is a newer version: 1.0-RC35
Show newest version
/*
 * Copyright (c) 2013, JoshuaTree Software. All rights reserved.
 */

package us.jts.commander;


import org.apache.wicket.ajax.AjaxRequestTarget;

/**
 * @author Shawn McKinney
 * @version $Rev$
 */
public class AjaxUpdateEvent
{

    private final AjaxRequestTarget target;

    public AjaxUpdateEvent(AjaxRequestTarget target)
    {
        this.target = target;
    }

    public AjaxRequestTarget getAjaxRequestTarget()
    {
        return target;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy