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.

ChangeHierarchyBeforeResponse.java 2.0KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. /*
  2. * Copyright 2000-2016 Vaadin Ltd.
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License"); you may not
  5. * use this file except in compliance with the License. You may obtain a copy of
  6. * the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
  12. * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
  13. * License for the specific language governing permissions and limitations under
  14. * the License.
  15. */
  16. package com.vaadin.tests.components.abstractcomponent;
  17. import com.vaadin.server.VaadinRequest;
  18. import com.vaadin.tests.components.AbstractReindeerTestUI;
  19. import com.vaadin.ui.Button;
  20. import com.vaadin.ui.CssLayout;
  21. import com.vaadin.ui.Label;
  22. public class ChangeHierarchyBeforeResponse extends AbstractReindeerTestUI {
  23. private CssLayout layout = new CssLayout() {
  24. @Override
  25. public void beforeClientResponse(boolean initial) {
  26. super.beforeClientResponse(initial);
  27. if (initial) {
  28. addComponent(buttonToAdd);
  29. removeComponent(labelToRemove);
  30. }
  31. }
  32. };
  33. private Label labelToRemove = new Label("Label to remove") {
  34. int count = 0;
  35. @Override
  36. public void beforeClientResponse(boolean initial) {
  37. super.beforeClientResponse(initial);
  38. if (initial) {
  39. count++;
  40. setValue("Initial count: " + count);
  41. }
  42. }
  43. };
  44. private Button buttonToAdd = new Button("Added from beforeClientResponse",
  45. event -> layout.addComponent(labelToRemove)) {
  46. @Override
  47. public void beforeClientResponse(boolean initial) {
  48. super.beforeClientResponse(initial);
  49. setCaption("Add label to layout");
  50. }
  51. };
  52. @Override
  53. protected void setup(VaadinRequest request) {
  54. layout.addComponent(labelToRemove);
  55. addComponent(layout);
  56. }
  57. }