Polished

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

Branch: refs/heads/master
Commit: 5353e405ed654e74dd8afa5f5703516c46f703b8
Parents: f846d6b
Author: Claus Ibsen <davscl...@apache.org>
Authored: Mon Aug 25 10:10:58 2014 +0200
Committer: Claus Ibsen <davscl...@apache.org>
Committed: Mon Aug 25 11:33:00 2014 +0200

----------------------------------------------------------------------
 .../java/org/apache/camel/ComponentConfiguration.java     | 10 +++-------
 1 file changed, 3 insertions(+), 7 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/5353e405/camel-core/src/main/java/org/apache/camel/ComponentConfiguration.java
----------------------------------------------------------------------
diff --git 
a/camel-core/src/main/java/org/apache/camel/ComponentConfiguration.java 
b/camel-core/src/main/java/org/apache/camel/ComponentConfiguration.java
index 9e0deb5..bcf8ae4 100644
--- a/camel-core/src/main/java/org/apache/camel/ComponentConfiguration.java
+++ b/camel-core/src/main/java/org/apache/camel/ComponentConfiguration.java
@@ -50,7 +50,7 @@ public interface ComponentConfiguration {
     void setBaseUri(String baseUri);
 
     /**
-     * Returns the current parameters of the configuration (usually encoded as 
?foo=bar&whatnot=something URI query parameters)
+     * Returns the current parameters of the configuration (usually encoded as 
<tt>?foo=bar&whatnot=something</tt> URI query parameters)
      */
     Map<String, Object> getParameters();
 
@@ -75,7 +75,6 @@ public interface ComponentConfiguration {
      */
     void setParameter(String name, Object value);
 
-
     /**
      * Returns the URI string (without schema) with query parameters for the 
current
      * configuration which can then be used to create an {@link 
org.apache.camel.Endpoint}
@@ -111,7 +110,7 @@ public interface ComponentConfiguration {
      * <p/>
      * Note that typically parts of the URI are not injected into the 
Endpoint; this method purely
      *
-     * @param endpoint
+     * @param endpoint the endpoint instance
      */
     void configureEndpoint(Endpoint endpoint);
 
@@ -137,15 +136,12 @@ public interface ComponentConfiguration {
 
     /**
      * A helper method for tools such as CLIs, IDEs or web tools that provides 
a completion list for Endpoint Paths
-     * rather like bash tab completion or Karaf attribute or option completion 
handers.
+     * rather like bash tab completion or Karaf attribute or option completion 
handlers.
      *
      * So given the current configuration data, return a list of completions 
given the specified text.
-     *
      * e.g. return the files in a directory, the matching queues in a message 
broker, the database tables in a database component etc
      *
      * @param completionText the prefix text used to complete on (usually a 
matching bit of text)
-     *
-     * @return a list of matches
      * @return a list of matches
      */
     List<String> completeEndpointPath(String completionText);

Reply via email to