aboutsummaryrefslogtreecommitdiffstats
path: root/uitest/src/com/vaadin/tests/minitutorials
diff options
context:
space:
mode:
authorLeif Åstrand <leif@vaadin.com>2012-09-14 16:12:31 +0300
committerLeif Åstrand <leif@vaadin.com>2012-09-14 16:12:49 +0300
commit9fa3585cbd789c1866a7430bf9ac4e3b601727b9 (patch)
treeae4de5b446d77478662dcc247626642a9c3bb3cf /uitest/src/com/vaadin/tests/minitutorials
parente6f12f49b4228425a7624b3bd5be9ad4c300b37b (diff)
downloadvaadin-framework-9fa3585cbd789c1866a7430bf9ac4e3b601727b9.tar.gz
vaadin-framework-9fa3585cbd789c1866a7430bf9ac4e3b601727b9.zip
Mini tutorial code for beforeClientResponse (#9499)
Diffstat (limited to 'uitest/src/com/vaadin/tests/minitutorials')
-rw-r--r--uitest/src/com/vaadin/tests/minitutorials/v7b1/Addition.java53
1 files changed, 53 insertions, 0 deletions
diff --git a/uitest/src/com/vaadin/tests/minitutorials/v7b1/Addition.java b/uitest/src/com/vaadin/tests/minitutorials/v7b1/Addition.java
new file mode 100644
index 0000000000..7e1c9ecf2a
--- /dev/null
+++ b/uitest/src/com/vaadin/tests/minitutorials/v7b1/Addition.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2011 Vaadin Ltd.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
+ * use this file except in compliance with the License. You may obtain a copy of
+ * the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
+ * License for the specific language governing permissions and limitations under
+ * the License.
+ */
+
+package com.vaadin.tests.minitutorials.v7b1;
+
+import com.vaadin.shared.ComponentState;
+import com.vaadin.ui.AbstractComponent;
+
+public class Addition extends AbstractComponent {
+ private int term1;
+ private int term2;
+
+ public void setTerm1(int value1) {
+ this.term1 = value1;
+ markAsDirty();
+ }
+
+ public void setTerm2(int value2) {
+ this.term2 = value2;
+ markAsDirty();
+ }
+
+ private int calculateSum() {
+ return term1 + term2;
+ }
+
+ @Override
+ public void beforeClientResponse(boolean initial) {
+ getState().sum = calculateSum();
+ }
+
+ @Override
+ protected AddResultState getState() {
+ return (AddResultState) super.getState();
+ }
+}
+
+class AddResultState extends ComponentState {
+ public int sum;
+}