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

pl.fhframework.events.DesignViewEvent Maven / Gradle / Ivy

package pl.fhframework.events;

import lombok.Getter;
import lombok.Setter;
import pl.fhframework.model.forms.Component;
import pl.fhframework.model.forms.Form;

import java.util.List;
import java.util.Map;

/**
 * Created by Adam Zareba on 01.03.2017. Event for form designer purpose. Allows sending additional
 * data over changedFields collection.
 */
@Getter
@Setter
public class DesignViewEvent extends ViewEvent {

    private Map changedAttributes;

    public DesignViewEvent(Component sourceObject, Form sourceForm, Map changedAttributes) {
        super(sourceObject, sourceForm);
        this.changedAttributes = changedAttributes;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy