Glad to help you!

- {@code ...} creates a <code>...</code> environment, so ist formatted like 
code.
- there is also {@literal ...} which makes the thing escaped, but plain text 
(so its same font as remaining text)

Uwe

-----
Uwe Schindler
H.-H.-Meier-Allee 63, D-28213 Bremen
http://www.thetaphi.de
eMail: [email protected]


> -----Original Message-----
> From: Michael McCandless [mailto:[email protected]]
> Sent: Tuesday, August 28, 2012 6:16 PM
> To: [email protected]
> Subject: Re: svn commit: r1378140 -
> /lucene/dev/trunk/lucene/core/src/java/org/apache/lucene/search/Disjunction
> MaxQuery.java
> 
> Aha!  Most excellent.  I'll switch to {@code ...}.  Thanks for the pointer.
> 
> Mike McCandless
> 
> http://blog.mikemccandless.com
> 
> On Tue, Aug 28, 2012 at 10:35 AM, Uwe Schindler <[email protected]> wrote:
> > Hi Mike,
> >
> > The easier way (and also looks more code-style like):
> > {@code Collection<Query>} - This escapes automatically and you can read it
> better. It also added <code></code> around!
> >
> > See my recent additions to WeakIdentityMap :-)
> >
> > Uwe
> >
> > -----
> > Uwe Schindler
> > H.-H.-Meier-Allee 63, D-28213 Bremen
> > http://www.thetaphi.de
> > eMail: [email protected]
> >
> >
> >> -----Original Message-----
> >> From: [email protected] [mailto:[email protected]]
> >> Sent: Tuesday, August 28, 2012 4:02 PM
> >> To: [email protected]
> >> Subject: svn commit: r1378140 -
> >> /lucene/dev/trunk/lucene/core/src/java/org/apache/lucene/search/Disju
> >> nction
> >> MaxQuery.java
> >>
> >> Author: mikemccand
> >> Date: Tue Aug 28 14:02:19 2012
> >> New Revision: 1378140
> >>
> >> URL: http://svn.apache.org/viewvc?rev=1378140&view=rev
> >> Log:
> >> escape generics to HTML
> >>
> >> Modified:
> >>
> >> lucene/dev/trunk/lucene/core/src/java/org/apache/lucene/search/Disjun
> >> ction
> >> MaxQuery.java
> >>
> >> Modified:
> >> lucene/dev/trunk/lucene/core/src/java/org/apache/lucene/search/Disjun
> >> ction
> >> MaxQuery.java
> >> URL:
> >> http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/core/src/java/or
> >> g/apac
> >>
> he/lucene/search/DisjunctionMaxQuery.java?rev=1378140&r1=1378139&r2=1
> >> 378140&view=diff
> >>
> ================================================================
> >> ==============
> >> ---
> >> lucene/dev/trunk/lucene/core/src/java/org/apache/lucene/search/Disjun
> >> ction
> >> MaxQuery.java (original)
> >> +++ lucene/dev/trunk/lucene/core/src/java/org/apache/lucene/search/Di
> >> +++ sju nctionMaxQuery.java Tue Aug 28 14:02:19 2012
> >> @@ -61,7 +61,7 @@ public class DisjunctionMaxQuery extends
> >>
> >>    /**
> >>     * Creates a new DisjunctionMaxQuery
> >> -   * @param disjuncts a Collection<Query> of all the disjuncts to add
> >> +   * @param disjuncts a Collection&lt;Query&gt; of all the disjuncts
> >> + to add
> >>     * @param tieBreakerMultiplier   the weight to give to each matching
> non-
> >> maximum disjunct
> >>     */
> >>    public DisjunctionMaxQuery(Collection<Query> disjuncts, float
> >> tieBreakerMultiplier) { @@ -77,14 +77,14 @@ public class
> >> DisjunctionMaxQuery extends
> >>    }
> >>
> >>    /** Add a collection of disjuncts to this disjunction
> >> -   * via Iterable<Query>
> >> +   * via Iterable&lt;Query&gt;
> >>     * @param disjuncts a collection of queries to add as disjuncts.
> >>     */
> >>    public void add(Collection<Query> disjuncts) {
> >>      this.disjuncts.addAll(disjuncts);
> >>    }
> >>
> >> -  /** @return An Iterator<Query> over the disjuncts */
> >> +  /** @return An Iterator&lt;Query&gt; over the disjuncts */
> >>    public Iterator<Query> iterator() {
> >>      return disjuncts.iterator();
> >>    }
> >
> >
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: [email protected] For
> > additional commands, e-mail: [email protected]
> >
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [email protected] For additional
> commands, e-mail: [email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to