
gxt-2.1.1-sources.com.extjs.gxt.ui.client.event.FieldSetEvent 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 - Ext for GWT
* Copyright(c) 2007-2009, Ext JS, LLC.
* [email protected]
*
* http://extjs.com/license
*/
package com.extjs.gxt.ui.client.event;
import com.extjs.gxt.ui.client.widget.form.FieldSet;
import com.google.gwt.user.client.Event;
@SuppressWarnings("unchecked")
public class FieldSetEvent extends ContainerEvent {
private FieldSet fieldSet;
public FieldSetEvent(FieldSet fieldSet) {
super(fieldSet);
this.fieldSet = fieldSet;
}
public FieldSetEvent(FieldSet fieldSet, Event event) {
this(fieldSet);
this.event = event;
}
/**
* Returns the source field set.
*
* @return the field set
*/
public FieldSet getFieldSet() {
return fieldSet;
}
/**
* Sets the source field set.
*
* @param fieldSet the field set
*/
public void setFieldSet(FieldSet fieldSet) {
this.fieldSet = fieldSet;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy