You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ha...@apache.org on 2011/06/09 22:47:18 UTC

svn commit: r1134070 - /camel/branches/camel-2.7.x/camel-core/src/main/java/org/apache/camel/model/ProcessorDefinition.java

Author: hadrian
Date: Thu Jun  9 20:47:18 2011
New Revision: 1134070

URL: http://svn.apache.org/viewvc?rev=1134070&view=rev
Log:
Checkstyle fix

Modified:
    camel/branches/camel-2.7.x/camel-core/src/main/java/org/apache/camel/model/ProcessorDefinition.java

Modified: camel/branches/camel-2.7.x/camel-core/src/main/java/org/apache/camel/model/ProcessorDefinition.java
URL: http://svn.apache.org/viewvc/camel/branches/camel-2.7.x/camel-core/src/main/java/org/apache/camel/model/ProcessorDefinition.java?rev=1134070&r1=1134069&r2=1134070&view=diff
==============================================================================
--- camel/branches/camel-2.7.x/camel-core/src/main/java/org/apache/camel/model/ProcessorDefinition.java (original)
+++ camel/branches/camel-2.7.x/camel-core/src/main/java/org/apache/camel/model/ProcessorDefinition.java Thu Jun  9 20:47:18 2011
@@ -77,8 +77,6 @@ import static org.apache.camel.builder.B
 
 /**
  * Base class for processor types that most XML types extend.
- *
- * @version 
  */
 @XmlAccessorType(XmlAccessType.PROPERTY)
 public abstract class ProcessorDefinition<Type extends ProcessorDefinition<Type>> extends OptionalIdentifiedDefinition implements Block {
@@ -96,7 +94,6 @@ public abstract class ProcessorDefinitio
 
     // else to use an optional attribute in JAXB2
     public abstract List<ProcessorDefinition> getOutputs();
-
     public abstract boolean isOutputSupported();
 
     /**
@@ -611,7 +608,6 @@ public abstract class ProcessorDefinitio
         return (Type) this;
     }
 
-
     /**
      * Sends the exchange to the given endpoint
      *
@@ -636,7 +632,6 @@ public abstract class ProcessorDefinitio
         addOutput(new ToDefinition(uri, pattern));
         return (Type) this;
     }   
-    
 
     /**
      * Sends the exchange with certain exchange pattern to the given endpoint
@@ -665,7 +660,6 @@ public abstract class ProcessorDefinitio
         return (Type) this;
     }
 
-
     /**
      * Sends the exchange to a list of endpoints
      *
@@ -694,7 +688,6 @@ public abstract class ProcessorDefinitio
         return (Type) this;
     }
     
-    
     /**
      * Sends the exchange to a list of endpoints
      *
@@ -788,7 +781,6 @@ public abstract class ProcessorDefinitio
         return to(ExchangePattern.InOnly, endpoint);
     }
 
-
     /**
      * Sends the message to the given endpoints using an
      * <a href="http://camel.apache.org/event-message.html">Event Message</a> or
@@ -801,7 +793,6 @@ public abstract class ProcessorDefinitio
         return to(ExchangePattern.InOnly, uris);
     }
 
-
     /**
      * Sends the message to the given endpoints using an
      * <a href="http://camel.apache.org/event-message.html">Event Message</a> or
@@ -826,7 +817,6 @@ public abstract class ProcessorDefinitio
         return to(ExchangePattern.InOnly, endpoints);
     }
 
-
     /**
      * <a href="http://camel.apache.org/exchange-pattern.html">ExchangePattern:</a>
      * set the exchange's ExchangePattern {@link ExchangePattern} to be InOut
@@ -957,8 +947,7 @@ public abstract class ProcessorDefinitio
      * destination gets a copy of the original message to avoid the processors
      * interfering with each other.
      *
-     * @param aggregationStrategy the strategy used to aggregate responses for
-     *          every part
+     * @param aggregationStrategy the strategy used to aggregate responses for every part
      * @param parallelProcessing if is <tt>true</tt> camel will fork thread to call the endpoint producer
      * @return the builder
      */
@@ -2104,7 +2093,6 @@ public abstract class ProcessorDefinitio
 
     /**
      * Stops continue routing the current {@link org.apache.camel.Exchange} and marks it as completed.
-     *
      * @return the builder
      */
     @SuppressWarnings("unchecked")
@@ -2197,7 +2185,6 @@ public abstract class ProcessorDefinitio
 
     // Transformers
     // -------------------------------------------------------------------------
-
     /**
      * <a href="http://camel.apache.org/message-translator.html">Message Translator EIP:</a>
      * Adds the custom processor to this destination which could be a final
@@ -2804,7 +2791,6 @@ public abstract class ProcessorDefinitio
 
     // DataFormat support
     // -------------------------------------------------------------------------
-
     /**
      * <a href="http://camel.apache.org/data-format.html">DataFormat:</a>
      * Unmarshals the in body using a {@link DataFormat} expression to define
@@ -3008,5 +2994,4 @@ public abstract class ProcessorDefinitio
     public String getLabel() {
         return "";
     }
-
 }