Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrian Vosburgh2016-07-15 15:42:42 +0000
committerBrian Vosburgh2017-05-18 22:37:57 +0000
commit3f5eace0de56e0514b706a1099acceeeff122d86 (patch)
tree4d1f092316404ae19aa792cc75ca20abb3867a52 /common/tests/org.eclipse.jpt.common.utility.tests
parent8ff9fb95c56ff9fdc5bc534e0a78e3933e090241 (diff)
downloadwebtools.dali-3f5eace0de56e0514b706a1099acceeeff122d86.tar.gz
webtools.dali-3f5eace0de56e0514b706a1099acceeeff122d86.tar.xz
webtools.dali-3f5eace0de56e0514b706a1099acceeeff122d86.zip
add return value to
BasePluggablePropertyValueModel.Adapter.engageModel()
Diffstat (limited to 'common/tests/org.eclipse.jpt.common.utility.tests')
-rw-r--r--common/tests/org.eclipse.jpt.common.utility.tests/src/org/eclipse/jpt/common/utility/tests/internal/model/value/PropertyValueModelToolsTests.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/tests/org.eclipse.jpt.common.utility.tests/src/org/eclipse/jpt/common/utility/tests/internal/model/value/PropertyValueModelToolsTests.java b/common/tests/org.eclipse.jpt.common.utility.tests/src/org/eclipse/jpt/common/utility/tests/internal/model/value/PropertyValueModelToolsTests.java
index ce91c5575e..57db49690c 100644
--- a/common/tests/org.eclipse.jpt.common.utility.tests/src/org/eclipse/jpt/common/utility/tests/internal/model/value/PropertyValueModelToolsTests.java
+++ b/common/tests/org.eclipse.jpt.common.utility.tests/src/org/eclipse/jpt/common/utility/tests/internal/model/value/PropertyValueModelToolsTests.java
@@ -1168,10 +1168,10 @@ public class PropertyValueModelToolsTests
this.value = null;
}
- public void engageModel() {
+ public String engageModel() {
this.stringModel.addPropertyChangeListener(PropertyValueModel.VALUE, this.stringListener);
String v = this.stringModel.getValue();
- this.value = v.substring(v.length() / 2);
+ return this.value = v.substring(v.length() / 2);
}
public String getValue() {

Back to the top