~ubuntu-branches/ubuntu/jaunty/beagle/jaunty-security

« back to all changes in this revision

Viewing changes to beagled/Lucene.Net/Search/SortComparatorSource.cs

  • Committer: Bazaar Package Importer
  • Author(s): Stefan Ebner
  • Date: 2008-05-04 00:31:32 UTC
  • mfrom: (1.1.21 upstream)
  • Revision ID: james.westby@ubuntu.com-20080504003132-2tkm5o8moo5952ri
Tags: 0.3.7-2ubuntu1
 * Merge from Debian unstable. (LP: #225746) Remaining Ubuntu changes:
  - debian/control:
    + Rename ice{weasel,dove}-beagle to {mozilla,thunderbird}-beagle and
      and update the dependencies accordingly.
    + Change Maintainer to Ubuntu Mono Team.
  - debian/rules:
    + Install the mozilla-beagle and thunderbird-beagle extensions.
  - ice{dove,weasel}.dirs:
    + Renamed to {mozilla,thunderbird}-beagle.dirs.
    + Fixed paths to point to usr/lib/{firefox,thunderbird}

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
 
 * Copyright 2004 The Apache Software Foundation
3
 
 * 
4
 
 * Licensed under the Apache License, Version 2.0 (the "License");
5
 
 * you may not use this file except in compliance with the License.
6
 
 * You may obtain a copy of the License at
 
2
 * Licensed to the Apache Software Foundation (ASF) under one or more
 
3
 * contributor license agreements.  See the NOTICE file distributed with
 
4
 * this work for additional information regarding copyright ownership.
 
5
 * The ASF licenses this file to You under the Apache License, Version 2.0
 
6
 * (the "License"); you may not use this file except in compliance with
 
7
 * the License.  You may obtain a copy of the License at
7
8
 * 
8
9
 * http://www.apache.org/licenses/LICENSE-2.0
9
10
 * 
15
16
 */
16
17
 
17
18
using System;
 
19
 
18
20
using IndexReader = Lucene.Net.Index.IndexReader;
19
21
 
20
22
namespace Lucene.Net.Search
27
29
        /// </summary>
28
30
        /// <author>   Tim Jones
29
31
        /// </author>
30
 
        /// <version>  $Id: SortComparatorSource.cs,v 1.3 2006/10/02 17:09:07 joeshaw Exp $
 
32
        /// <version>  $Id: SortComparatorSource.java 413201 2006-06-10 01:23:22Z gsingers $
31
33
        /// </version>
32
34
        /// <since>   1.4
33
35
        /// </since>
37
39
                /// <summary> Creates a comparator for the field in the given index.</summary>
38
40
                /// <param name="reader">Index to create comparator for.
39
41
                /// </param>
40
 
                /// <param name="fieldname"> Field to create comparator for.
 
42
                /// <param name="fieldname"> Fieldable to create comparator for.
41
43
                /// </param>
42
44
                /// <returns> Comparator of ScoreDoc objects.
43
45
                /// </returns>