You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ChangeVariablesErrorEvent.java 862B

1234567891011121314151617181920212223242526272829303132333435363738
  1. /*
  2. @ITMillApache2LicenseForJavaFiles@
  3. */
  4. package com.vaadin.terminal.gwt.server;
  5. import java.util.Map;
  6. import com.vaadin.ui.AbstractComponent.ComponentErrorEvent;
  7. import com.vaadin.ui.Component;
  8. @SuppressWarnings("serial")
  9. public class ChangeVariablesErrorEvent implements ComponentErrorEvent {
  10. private Throwable throwable;
  11. private Component component;
  12. private Map variableChanges;
  13. public ChangeVariablesErrorEvent(Component component, Throwable throwable,
  14. Map variableChanges) {
  15. this.component = component;
  16. this.throwable = throwable;
  17. this.variableChanges = variableChanges;
  18. }
  19. public Throwable getThrowable() {
  20. return throwable;
  21. }
  22. public Component getComponent() {
  23. return component;
  24. }
  25. public Map getVariableChanges() {
  26. return variableChanges;
  27. }
  28. }