Wolfgang-Schuetzelhofer / jcypher

Java access to Neo4J graph databases at multiple levels of abstraction
Apache License 2.0
86 stars 15 forks source link

Please remove the red colors from the javadoc #2

Closed jexp closed 8 years ago

jexp commented 10 years ago

It makes it really hard to read. Also the first line with JCYPHER is not needed.

e.g.

    /**
     * <div color='red' style="font-size:24px;color:red"><b><i><u>JCYPHER</u></i></b></div>
     * <div color='red' style="font-size:18px;color:red"><i>run an expression against individual elements of a collection
     * </br>and store the result of the expression in an accumulator</i></div>
     * <div color='red' style="font-size:18px;color:red"><i>e.g. ...<b>REDUCE()</b><br/>.fromAll(n).IN_nodes(p)<br/>.to(totalAge)<br/>.by(totalAge.plus(n.numberProperty("age")))<br/>.startWith(0)</i></div>
     * <br/>
     */
    public static CFrom<ReduceTo> REDUCE() {
        return CFactory.REDUCE();
    }

Should just be:

    /**
     run an expression against individual elements of a collection and store the result of the expression in an accumulator
     <code>REDUCE().fromAll(n).IN_nodes(p).to(totalAge).by(totalAge.plus(n.numberProperty("age"))).startWith(0)</code>   
    */
    public static CFrom<ReduceTo> REDUCE() {
        return CFactory.REDUCE();
    }

If you want to style your javadoc with custom styles you can do so after/during javadoc generation