You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@camel.apache.org by "Anders Rabo Thorbeck (JIRA)" <ji...@apache.org> on 2014/07/11 12:11:04 UTC

[jira] [Updated] (CAMEL-7596) Syntax error in javadoc of ExpressionClause.method()

     [ https://issues.apache.org/jira/browse/CAMEL-7596?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Anders Rabo Thorbeck updated CAMEL-7596:
----------------------------------------

    Description: 
The six different overloaded versions of the method {{org.apache.camel.builder.ExpressionClause.method()}} all have incorrect javadoc, where the href attribute of an {{<a>}} tag has no end quote. This means the javadoc in an IDE (Eclipse in my case) doesn't display anything after and including this tag.

Example:
{code:java}
    /**
     * Evaluates an expression using the <a
     * href="http://camel.apache.org/bean-language.html>bean language</a>
     * which basically means the bean is invoked to determine the expression
     * value.
     * 
     * @param bean the name of the bean looked up the registry
     * @return the builder to continue processing the DSL
     */
    public T method(String bean) {
        return delegate.method(bean);
    }
{code}

  was:
The six different overloaded versions of the method {{org.apache.camel.builder.ExpressionClause.method()}} all have incorrect javadoc, where the href attribute of an {{<a>}} tag has no end quote.

Example:
{code:java}
    /**
     * Evaluates an expression using the <a
     * href="http://camel.apache.org/bean-language.html>bean language</a>
     * which basically means the bean is invoked to determine the expression
     * value.
     * 
     * @param bean the name of the bean looked up the registry
     * @return the builder to continue processing the DSL
     */
    public T method(String bean) {
        return delegate.method(bean);
    }
{code}


> Syntax error in javadoc of ExpressionClause.method()
> ----------------------------------------------------
>
>                 Key: CAMEL-7596
>                 URL: https://issues.apache.org/jira/browse/CAMEL-7596
>             Project: Camel
>          Issue Type: Improvement
>          Components: camel-core
>    Affects Versions: 2.10.2
>            Reporter: Anders Rabo Thorbeck
>            Priority: Trivial
>              Labels: documentation, easyfix
>   Original Estimate: 5m
>  Remaining Estimate: 5m
>
> The six different overloaded versions of the method {{org.apache.camel.builder.ExpressionClause.method()}} all have incorrect javadoc, where the href attribute of an {{<a>}} tag has no end quote. This means the javadoc in an IDE (Eclipse in my case) doesn't display anything after and including this tag.
> Example:
> {code:java}
>     /**
>      * Evaluates an expression using the <a
>      * href="http://camel.apache.org/bean-language.html>bean language</a>
>      * which basically means the bean is invoked to determine the expression
>      * value.
>      * 
>      * @param bean the name of the bean looked up the registry
>      * @return the builder to continue processing the DSL
>      */
>     public T method(String bean) {
>         return delegate.method(bean);
>     }
> {code}



--
This message was sent by Atlassian JIRA
(v6.2#6252)