You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by bv...@apache.org on 2015/04/02 20:47:12 UTC

camel git commit: CAMEL-7877: Polish Javadoc.

Repository: camel
Updated Branches:
  refs/heads/master 408e27fbe -> 81e77504f


CAMEL-7877: Polish Javadoc.

Project: http://git-wip-us.apache.org/repos/asf/camel/repo
Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/81e77504
Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/81e77504
Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/81e77504

Branch: refs/heads/master
Commit: 81e77504fba9f54b14be9b08e8051ebb91b61ebe
Parents: 408e27f
Author: Babak Vahdat <bv...@apache.org>
Authored: Thu Apr 2 20:46:58 2015 +0200
Committer: Babak Vahdat <bv...@apache.org>
Committed: Thu Apr 2 20:46:58 2015 +0200

----------------------------------------------------------------------
 .../java/org/apache/camel/builder/DataFormatClause.java | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/81e77504/camel-core/src/main/java/org/apache/camel/builder/DataFormatClause.java
----------------------------------------------------------------------
diff --git a/camel-core/src/main/java/org/apache/camel/builder/DataFormatClause.java b/camel-core/src/main/java/org/apache/camel/builder/DataFormatClause.java
index 1a446c3..7887b14 100644
--- a/camel-core/src/main/java/org/apache/camel/builder/DataFormatClause.java
+++ b/camel-core/src/main/java/org/apache/camel/builder/DataFormatClause.java
@@ -361,9 +361,9 @@ public class DataFormatClause<T extends ProcessorDefinition<?>> {
     }
 
     /**
-     * Uses the JSON data format using the XStream json library with pretty-print option on or off
+     * Uses the JSON data format using the XStream json library turning pretty printing on or off
      * 
-     * @param prettyPrint turn the pretty-print option on or off
+     * @param prettyPrint turn pretty printing on or off
      */
     public T json(boolean prettyPrint) {
         JsonDataFormat json = new JsonDataFormat();
@@ -384,7 +384,7 @@ public class DataFormatClause<T extends ProcessorDefinition<?>> {
      * Uses the JSON data format
      *
      * @param library     the json library to use
-     * @param prettyPrint turn the pretty-print option on or off
+     * @param prettyPrint turn pretty printing on or off
      */
     public T json(JsonLibrary library, boolean prettyPrint) {
         JsonDataFormat json = new JsonDataFormat(library);
@@ -409,7 +409,7 @@ public class DataFormatClause<T extends ProcessorDefinition<?>> {
      *
      * @param type          the json type to use
      * @param unmarshalType unmarshal type for json jackson type
-     * @param prettyPrint   turn the pretty-print option on or off
+     * @param prettyPrint   turn pretty printing on or off
      */
     public T json(JsonLibrary type, Class<?> unmarshalType, boolean prettyPrint) {
         JsonDataFormat json = new JsonDataFormat(type);
@@ -436,7 +436,7 @@ public class DataFormatClause<T extends ProcessorDefinition<?>> {
      *
      * @param unmarshalType unmarshal type for json jackson type
      * @param jsonView      the view type for json jackson type
-     * @param prettyPrint   turn the pretty-print option on or off
+     * @param prettyPrint   turn pretty printing on or off
      */
     public T json(Class<?> unmarshalType, Class<?> jsonView, boolean prettyPrint) {
         JsonDataFormat json = new JsonDataFormat(JsonLibrary.Jackson);
@@ -467,7 +467,7 @@ public class DataFormatClause<T extends ProcessorDefinition<?>> {
      * @param unmarshalType unmarshal type for json jackson type
      * @param jsonView      the view type for json jackson type
      * @param include       include such as <tt>ALWAYS</tt>, <tt>NON_NULL</tt>, etc.
-      * @param prettyPrint  turn the pretty-print option on or off
+      * @param prettyPrint  turn pretty printing on or off
      */
     public T json(Class<?> unmarshalType, Class<?> jsonView, String include, boolean prettyPrint) {
         JsonDataFormat json = new JsonDataFormat(JsonLibrary.Jackson);