Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'common/tests/org.eclipse.jpt.common.utility.tests/src/org/eclipse/jpt/common/utility/tests/internal/model/value/PropertyValueModelToolsTests.java')
-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 e15aabe353..f9333cfac5 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
@@ -1108,7 +1108,7 @@ public class PropertyValueModelToolsTests
public void testModifiablePropertyValueModel() {
ModifiablePropertyValueModel<String> doubleStringModel = new SimplePropertyValueModel<>("foofoo");
PluggableModifiablePropertyValueModel.Adapter.Factory<String> factory = new HalfStringModelAdapter.Factory(doubleStringModel);
- ModifiablePropertyValueModel<String> halfStringModel = PropertyValueModelTools.modifiablePropertyValueModel(factory);
+ ModifiablePropertyValueModel<String> halfStringModel = PropertyValueModelTools.modifiableModel(factory);
LocalListener listener = new LocalListener();
halfStringModel.addPropertyChangeListener(PropertyValueModel.VALUE, listener);
@@ -1213,7 +1213,7 @@ public class PropertyValueModelToolsTests
Closure<String> closure = null;
boolean exCaught = false;
try {
- ModifiablePropertyValueModel<String> pvm = PropertyValueModelTools.pluggableModifiablePropertyValueModel(factory, closure);
+ ModifiablePropertyValueModel<String> pvm = PropertyValueModelTools.pluggableModifiableModel(factory, closure);
fail("bogus: " + pvm);
} catch (NullPointerException ex) {
exCaught = true;

Back to the top