![JAR search and dependency download from the Maven repository](/logo.png)
com.extjs.gxt.ui.client.event.FxEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gxt Show documentation
Show all versions of gxt Show documentation
Rich Internet Application Framework for GWT
/*
* Ext GWT 2.2.0 - Ext for GWT
* Copyright(c) 2007-2010, Ext JS, LLC.
* [email protected]
*
* http://extjs.com/license
*/
package com.extjs.gxt.ui.client.event;
import com.extjs.gxt.ui.client.fx.Effect;
import com.extjs.gxt.ui.client.fx.Fx;
/**
* Fx event type.
*
* @see Fx
*/
public class FxEvent extends BaseEvent {
private Effect effect;
private Fx fx;
public FxEvent(Fx fx, Effect effect) {
super(fx);
this.fx = fx;
this.effect = effect;
}
/**
* Returns the effect.
*
* @return the effect
*/
public Effect getEffect() {
return effect;
}
/**
* Returns the source fx.
*
* @return the fx
*/
public Fx getFx() {
return fx;
}
/**
* Sets the effect.
*
* @param effect the effect
*/
public void setEffect(Effect effect) {
this.effect = effect;
}
/**
* Sets the fx.
*
* @param fx the fx
*/
public void setFx(Fx fx) {
this.fx = fx;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy