Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorpfullbright2009-04-03 20:58:18 +0000
committerpfullbright2009-04-03 20:58:18 +0000
commitdfb264e0de70f78e09d85b76c47dbe8eabafe890 (patch)
tree3af4900327812ca0b9ade4b8b9cbd9d310d2ea28
parent5d31976c7f9380d31b32f62b778d4abb86a298aa (diff)
downloadwebtools.dali-dfb264e0de70f78e09d85b76c47dbe8eabafe890.tar.gz
webtools.dali-dfb264e0de70f78e09d85b76c47dbe8eabafe890.tar.xz
webtools.dali-dfb264e0de70f78e09d85b76c47dbe8eabafe890.zip
tweaked comment
-rw-r--r--jpa/plugins/org.eclipse.jpt.utility/src/org/eclipse/jpt/utility/internal/model/value/ReadOnlyWritablePropertyValueModelWrapper.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/jpa/plugins/org.eclipse.jpt.utility/src/org/eclipse/jpt/utility/internal/model/value/ReadOnlyWritablePropertyValueModelWrapper.java b/jpa/plugins/org.eclipse.jpt.utility/src/org/eclipse/jpt/utility/internal/model/value/ReadOnlyWritablePropertyValueModelWrapper.java
index c70c263479..2e93212256 100644
--- a/jpa/plugins/org.eclipse.jpt.utility/src/org/eclipse/jpt/utility/internal/model/value/ReadOnlyWritablePropertyValueModelWrapper.java
+++ b/jpa/plugins/org.eclipse.jpt.utility/src/org/eclipse/jpt/utility/internal/model/value/ReadOnlyWritablePropertyValueModelWrapper.java
@@ -16,9 +16,9 @@ import org.eclipse.jpt.utility.model.value.WritablePropertyValueModel;
/**
* A simple implementation of {@link WritablePropertyValueModel} that actually
- * isn't ... writable. It can however be used in places that require a
- * {@link WritablePropertyValueModel} where the developer is sure that no attempt
- * will be made to write to it.
+ * ... <i>isn't</i> ... writable. It can however be used in places that require a
+ * {@link WritablePropertyValueModel} and where the developer is sure that no
+ * attempt will be made to write to it.
*/
public class ReadOnlyWritablePropertyValueModelWrapper<T>
extends PropertyValueModelWrapper<T>

Back to the top