Skip to main content
summaryrefslogtreecommitdiffstats
path: root/jpa
diff options
context:
space:
mode:
authorbvosburgh2009-10-07 13:39:17 +0000
committerbvosburgh2009-10-07 13:39:17 +0000
commitccd81077a270bf27d09156f30928c835957df55f (patch)
tree5be0eb5beedc36898ebc4f9578deba89f93819d7 /jpa
parentb1b83669144962e67ebc6ce485e5265c90a09a6e (diff)
downloadwebtools.dali-ccd81077a270bf27d09156f30928c835957df55f.tar.gz
webtools.dali-ccd81077a270bf27d09156f30928c835957df55f.tar.xz
webtools.dali-ccd81077a270bf27d09156f30928c835957df55f.zip
tweak comment
Diffstat (limited to 'jpa')
-rw-r--r--jpa/plugins/org.eclipse.jpt.utility/src/org/eclipse/jpt/utility/internal/model/value/TransformationWritablePropertyValueModel.java15
1 files changed, 9 insertions, 6 deletions
diff --git a/jpa/plugins/org.eclipse.jpt.utility/src/org/eclipse/jpt/utility/internal/model/value/TransformationWritablePropertyValueModel.java b/jpa/plugins/org.eclipse.jpt.utility/src/org/eclipse/jpt/utility/internal/model/value/TransformationWritablePropertyValueModel.java
index 6b18c215ba..f4bf546a25 100644
--- a/jpa/plugins/org.eclipse.jpt.utility/src/org/eclipse/jpt/utility/internal/model/value/TransformationWritablePropertyValueModel.java
+++ b/jpa/plugins/org.eclipse.jpt.utility/src/org/eclipse/jpt/utility/internal/model/value/TransformationWritablePropertyValueModel.java
@@ -79,7 +79,8 @@ public class TransformationWritablePropertyValueModel<T1, T2>
}
/**
- * "Reverse-transform" the specified, non-null, value and return the result.
+ * "Reverse-transform" the specified, non-<code>null</code>,
+ * value and return the result.
*/
protected T1 reverseTransform_(@SuppressWarnings("unused") T2 value) {
throw new RuntimeException("This method was not overridden."); //$NON-NLS-1$
@@ -109,12 +110,14 @@ public class TransformationWritablePropertyValueModel<T1, T2>
// ********** default bidi transformer **********
/**
- * The default bidi transformer will return null if the wrapped value is null.
- * If the wrapped value is not null, it is transformed by a subclass
+ * The default bidi transformer will return <code>null</code> if the
+ * wrapped value is <code>null</code>.
+ * If the wrapped value is not <code>null</code>, it is transformed by a subclass
* implementation of {@link #transform_(Object)}.
- * The default bidi transformer will also return null if the new value is null.
- * If the new value is not null, it is reverse-transformed by a subclass
- * implementation of {@link #reverseTransform_(Object)}.
+ * The default bidi transformer will also return <code>null</code>
+ * if the new value is <code>null</code>.
+ * If the new value is not <code>null</code>, it is reverse-transformed
+ * by a subclass implementation of {@link #reverseTransform_(Object)}.
*/
protected class DefaultBidiTransformer
extends DefaultTransformer

Back to the top