Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'common/plugins/org.eclipse.jpt.common.utility/src/org/eclipse/jpt/common/utility/internal/model/value/BufferedPropertyValueModelAdapter.java')
-rw-r--r--common/plugins/org.eclipse.jpt.common.utility/src/org/eclipse/jpt/common/utility/internal/model/value/BufferedPropertyValueModelAdapter.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/common/plugins/org.eclipse.jpt.common.utility/src/org/eclipse/jpt/common/utility/internal/model/value/BufferedPropertyValueModelAdapter.java b/common/plugins/org.eclipse.jpt.common.utility/src/org/eclipse/jpt/common/utility/internal/model/value/BufferedPropertyValueModelAdapter.java
index b6eaf814c3..383c77b1b9 100644
--- a/common/plugins/org.eclipse.jpt.common.utility/src/org/eclipse/jpt/common/utility/internal/model/value/BufferedPropertyValueModelAdapter.java
+++ b/common/plugins/org.eclipse.jpt.common.utility/src/org/eclipse/jpt/common/utility/internal/model/value/BufferedPropertyValueModelAdapter.java
@@ -46,7 +46,7 @@ import org.eclipse.jpt.common.utility.model.value.PropertyValueModel;
* @param <V> the type of the model's value
* @see PropertyAspectAdapterXXXX
*/
-public class BufferedPropertyValueModelAdapter<V>
+public final class BufferedPropertyValueModelAdapter<V>
implements PluggableModifiablePropertyValueModel.Adapter<V>, PropertyChangeListener
{
/**
@@ -263,7 +263,7 @@ public class BufferedPropertyValueModelAdapter<V>
* A trigger is used to <em>accept</em> or <em>reset</em> one or more
* buffered value models.
*/
- public static class Trigger {
+ public static final class Trigger {
private final ListenerList<Listener> listenerList = ModelTools.listenerList();
public Trigger() {
@@ -310,7 +310,7 @@ public class BufferedPropertyValueModelAdapter<V>
// ********** Factory **********
- public static class Factory<V>
+ public static final class Factory<V>
implements PluggableModifiablePropertyValueModel.Adapter.Factory<V>
{
/* CU private */ final ModifiablePropertyValueModel<V> wrappedValueModel;

Back to the top