diff options
author | Brian Vosburgh | 2016-07-15 15:45:39 +0000 |
---|---|---|
committer | Brian Vosburgh | 2017-05-18 22:37:59 +0000 |
commit | dd94c228cd95c35d0acb68c60e4f3b8588199137 (patch) | |
tree | 492af185cc20f24db379d3b0e1adbc7f622d69dc /common | |
parent | 3f5eace0de56e0514b706a1099acceeeff122d86 (diff) | |
download | webtools.dali-dd94c228cd95c35d0acb68c60e4f3b8588199137.tar.gz webtools.dali-dd94c228cd95c35d0acb68c60e4f3b8588199137.tar.xz webtools.dali-dd94c228cd95c35d0acb68c60e4f3b8588199137.zip |
remove BasePluggablePropertyValueModel.Adapter.getValue()
Diffstat (limited to 'common')
2 files changed, 0 insertions, 10 deletions
diff --git a/common/plugins/org.eclipse.jpt.common.utility/src/org/eclipse/jpt/common/utility/internal/model/value/BasePluggablePropertyValueModel.java b/common/plugins/org.eclipse.jpt.common.utility/src/org/eclipse/jpt/common/utility/internal/model/value/BasePluggablePropertyValueModel.java index 180a7d8692..644fa3a73d 100644 --- a/common/plugins/org.eclipse.jpt.common.utility/src/org/eclipse/jpt/common/utility/internal/model/value/BasePluggablePropertyValueModel.java +++ b/common/plugins/org.eclipse.jpt.common.utility/src/org/eclipse/jpt/common/utility/internal/model/value/BasePluggablePropertyValueModel.java @@ -198,12 +198,6 @@ public abstract class BasePluggablePropertyValueModel<V, A extends BasePluggable */ public interface Adapter<AV> { /** - * Return the current property value, as derived from the - * current state of the adapted model. - */ - AV getValue(); - - /** * Start listening to the adapted model * and return its current value. */ diff --git a/common/plugins/org.eclipse.jpt.common.utility/src/org/eclipse/jpt/common/utility/internal/model/value/PluggableModifiablePropertyValueModelAdapter.java b/common/plugins/org.eclipse.jpt.common.utility/src/org/eclipse/jpt/common/utility/internal/model/value/PluggableModifiablePropertyValueModelAdapter.java index eac83e2bf9..97a8e7613d 100644 --- a/common/plugins/org.eclipse.jpt.common.utility/src/org/eclipse/jpt/common/utility/internal/model/value/PluggableModifiablePropertyValueModelAdapter.java +++ b/common/plugins/org.eclipse.jpt.common.utility/src/org/eclipse/jpt/common/utility/internal/model/value/PluggableModifiablePropertyValueModelAdapter.java @@ -44,10 +44,6 @@ public class PluggableModifiablePropertyValueModelAdapter<V> this.closure = closure; } - public V getValue() { - return this.adapter.getValue(); - } - public void setValue(V value) { this.closure.execute(value); } |