Add FormParam (forgot to do this when FormParam was added to the API)

svn path=/trunk/; revision=419
diff --git a/src/jsr311-api/src/javax/ws/rs/Encoded.java b/src/jsr311-api/src/javax/ws/rs/Encoded.java
index e30001c..8a348eb 100644
--- a/src/jsr311-api/src/javax/ws/rs/Encoded.java
+++ b/src/jsr311-api/src/javax/ws/rs/Encoded.java
@@ -27,9 +27,9 @@
 
 /**
  * Disables automatic decoding of values bound using either {@link QueryParam}, 
- * {@link PathParam} or {@link MatrixParam}. This annotation is only effective
- * when combined with one of these annotations, implementations should warn if
- * the annotation is used on a scope where it will have no effect. 
+ * {@link PathParam}, {@link FormParam} or {@link MatrixParam}. This annotation
+ * is only effective when combined with one of these annotations, implementations
+ * should warn if the annotation is used on a scope where it will have no effect. 
  * Using this annotation on a method will disable decoding for all parameters.
  * Using this annotation on a class will disable decoding for all parameters of
  * all methods.
@@ -37,7 +37,7 @@
  * @see QueryParam
  * @see MatrixParam
  * @see PathParam
- * 
+ * @see FormParam
  */
 @Target({ElementType.PARAMETER, ElementType.METHOD, ElementType.FIELD, ElementType.CONSTRUCTOR, ElementType.TYPE})
 @Retention(RetentionPolicy.RUNTIME)