Changeset 5750 for SRUClient


Ignore:
Timestamp:
10/28/14 13:58:14 (10 years ago)
Author:
Oliver Schonefeld
Message:
  • update copyright
  • clean-up whitespace
Location:
SRUClient/trunk/src
Files:
55 edited

Legend:

Unmodified
Added
Removed
  • SRUClient/trunk/src/main/java/eu/clarin/sru/client/SRUAbstractRequest.java

    r2959 r5750  
    11/**
    2  * This software is copyright (c) 2011-2013 by
     2 * This software is copyright (c) 2012-2014 by
    33 *  - Institut fuer Deutsche Sprache (http://www.ids-mannheim.de)
    44 * This is free software. You can redistribute it
  • SRUClient/trunk/src/main/java/eu/clarin/sru/client/SRUAbstractResponse.java

    r2466 r5750  
    11/**
    2  * This software is copyright (c) 2011-2013 by
     2 * This software is copyright (c) 2012-2014 by
    33 *  - Institut fuer Deutsche Sprache (http://www.ids-mannheim.de)
    44 * This is free software. You can redistribute it
  • SRUClient/trunk/src/main/java/eu/clarin/sru/client/SRUCallback.java

    r2466 r5750  
    11/**
    2  * This software is copyright (c) 2011-2013 by
     2 * This software is copyright (c) 2012-2014 by
    33 *  - Institut fuer Deutsche Sprache (http://www.ids-mannheim.de)
    44 * This is free software. You can redistribute it
  • SRUClient/trunk/src/main/java/eu/clarin/sru/client/SRUClient.java

    r5748 r5750  
    11/**
    2  * This software is copyright (c) 2011-2013 by
     2 * This software is copyright (c) 2012-2014 by
    33 *  - Institut fuer Deutsche Sprache (http://www.ids-mannheim.de)
    44 * This is free software. You can redistribute it
  • SRUClient/trunk/src/main/java/eu/clarin/sru/client/SRUClientConfig.java

    r5748 r5750  
     1/**
     2 * This software is copyright (c) 2012-2014 by
     3 *  - Institut fuer Deutsche Sprache (http://www.ids-mannheim.de)
     4 * This is free software. You can redistribute it
     5 * and/or modify it under the terms described in
     6 * the GNU General Public License v3 of which you
     7 * should have received a copy. Otherwise you can download
     8 * it from
     9 *
     10 *   http://www.gnu.org/licenses/gpl-3.0.txt
     11 *
     12 * @copyright Institut fuer Deutsche Sprache (http://www.ids-mannheim.de)
     13 *
     14 * @license http://www.gnu.org/licenses/gpl-3.0.txt
     15 *  GNU General Public License v3
     16 */
    117package eu.clarin.sru.client;
    218
     
    2440    /**
    2541     * Get default SRU version to be used.
    26      * 
     42     *
    2743     * @return the default SRU version to be used.
    2844     */
     
    3450    /**
    3551     * Get the connect timeout.
    36      * 
     52     *
    3753     * @return the connect timeout
    3854     */
     
    4460    /**
    4561     * Get the socket timeout.
    46      * 
     62     *
    4763     * @return the connect timeout
    4864     */
     
    5571     * Get the number of worker threads. This value is only relevant for the
    5672     * {@link SRUThreadedClient}.
    57      * 
     73     *
    5874     * @return the number of worker threads
    5975     */
     
    6581    /**
    6682     * Get the list of record data parsers to be used.
    67      * 
     83     *
    6884     * @return the list of record data parsers.
    6985     */
     
    88104     * A class that implements the builder pattern to create
    89105     * {@link SRUClientConfig} instances.
    90      * 
     106     *
    91107     * @see SRUClientConfig
    92108     */
     
    103119        /**
    104120         * Constructor.
    105          * 
     121         *
    106122         */
    107123        public Builder() {
     
    111127        /**
    112128         * Get the default SRU version to be used
    113          * 
     129         *
    114130         * @return the defaultSRU version to be used
    115131         */
     
    121137        /**
    122138         * Set the default SRU version to be used.
    123          * 
     139         *
    124140         * @param defaultVersion
    125141         *            the default SRU version to be used
     
    139155        /**
    140156         * Get the connect timeout.
    141          * 
     157         *
    142158         * @return the connect timeout.
    143159         */
     
    153169         * timeout; <code>-1</code> is interpreted as system default.
    154170         * </p>
    155          * 
     171         *
    156172         * @param connectTimeout
    157173         *            the timeout in milliseconds
     
    170186         * Get the socket timeout (<code>SO_TIMEOUT</code>) in milliseconds,
    171187         * which is the timeout for waiting for data.
    172          * 
     188         *
    173189         * @return the socket timeout in milliseconds
    174190         */
     
    185201         * timeout; <code>-1</code> is interpreted as system default.
    186202         * </p>
    187          * 
     203         *
    188204         * @param socketTimeout
    189205         *            the socket timeout in milliseconds
     
    202218         * Get the number of worker threads. This value is only relevant for the
    203219         * {@link SRUThreadedClient}.
    204          * 
     220         *
    205221         * @return the number of worker threads
    206222         */
     
    213229         * Set the number of worker threads. This value is only relevant for the
    214230         * {@link SRUThreadedClient}.
    215          * 
     231         *
    216232         * @param threadCount
    217233         *            the number of worker threads
     
    229245        /**
    230246         * Get the list of record data parsers.
    231          * 
     247         *
    232248         * @return the list of record data parsers
    233249         * @see SRURecordDataParser
     
    240256        /**
    241257         * Add a record data parser instance to the list of record data parsers
    242          * 
     258         *
    243259         * @param parser
    244260         *            the record data parser to be added
     
    275291        /**
    276292         * Create a configuration instance object for configuring SRU clients
    277          * 
     293         *
    278294         * @return a immutable configuration instance
    279295         */
  • SRUClient/trunk/src/main/java/eu/clarin/sru/client/SRUClientConstants.java

    r2466 r5750  
    11/**
    2  * This software is copyright (c) 2011-2013 by
     2 * This software is copyright (c) 2012-2014 by
    33 *  - Institut fuer Deutsche Sprache (http://www.ids-mannheim.de)
    44 * This is free software. You can redistribute it
  • SRUClient/trunk/src/main/java/eu/clarin/sru/client/SRUClientDiagnostics.java

    r2466 r5750  
    11/**
    2  * This software is copyright (c) 2011-2013 by
     2 * This software is copyright (c) 2012-2014 by
    33 *  - Institut fuer Deutsche Sprache (http://www.ids-mannheim.de)
    44 * This is free software. You can redistribute it
  • SRUClient/trunk/src/main/java/eu/clarin/sru/client/SRUClientException.java

    r2466 r5750  
    11/**
    2  * This software is copyright (c) 2011-2013 by
     2 * This software is copyright (c) 2012-2014 by
    33 *  - Institut fuer Deutsche Sprache (http://www.ids-mannheim.de)
    44 * This is free software. You can redistribute it
     
    1818
    1919/**
    20  * SRU client exception. 
     20 * SRU client exception.
    2121 */
    2222@SuppressWarnings("serial")
     
    2525    /**
    2626     * Constructor
    27      * 
     27     *
    2828     * @param message an error message
    2929     */
     
    3535    /**
    3636     * Constructor
    37      * 
     37     *
    3838     * @param message an error message
    3939     * @param cause the cause of the error
  • SRUClient/trunk/src/main/java/eu/clarin/sru/client/SRUDefaultHandler.java

    r2466 r5750  
    11/**
    2  * This software is copyright (c) 2011-2013 by
     2 * This software is copyright (c) 2012-2014 by
    33 *  - Institut fuer Deutsche Sprache (http://www.ids-mannheim.de)
    44 * This is free software. You can redistribute it
     
    1919/**
    2020 * A handler implementing all interfaces for all three response handler types.
    21  * 
     21 *
    2222 * <p>
    2323 * This class is available as a convenience base class for SRU applications: it
     
    2929 * <li>{@link SRUSearchRetrieveHandler}</li>
    3030 * </ul>
    31  * 
     31 *
    3232 * @see SRUExplainHandler
    3333 * @see SRUScanHandler
  • SRUClient/trunk/src/main/java/eu/clarin/sru/client/SRUDefaultHandlerAdapter.java

    r2466 r5750  
    11/**
    2  * This software is copyright (c) 2011-2013 by
     2 * This software is copyright (c) 2012-2014 by
    33 *  - Institut fuer Deutsche Sprache (http://www.ids-mannheim.de)
    44 * This is free software. You can redistribute it
     
    4040 * default handlers when the application has not supplied its own.
    4141 * </p>
    42  * 
     42 *
    4343 * @see SRUExplainHandler
    4444 * @see SRUScanHandler
     
    4646 */
    4747public class SRUDefaultHandlerAdapter implements SRUDefaultHandler {
    48    
     48
    4949    @Override
    5050    public void onDiagnostics(List<SRUDiagnostic> diagnostics)
  • SRUClient/trunk/src/main/java/eu/clarin/sru/client/SRUDiagnostic.java

    r2466 r5750  
    11/**
    2  * This software is copyright (c) 2011-2013 by
     2 * This software is copyright (c) 2012-2014 by
    33 *  - Institut fuer Deutsche Sprache (http://www.ids-mannheim.de)
    44 * This is free software. You can redistribute it
     
    1919/**
    2020 * Class to hold a SRU diagnostic.
    21  * 
     21 *
    2222 * @see <a href="http://www.loc.gov/standards/sru/specs/diagnostics.html">SRU
    2323 *      Diagnostics</a>
     
    3434    /**
    3535     * Constructor.
    36      * 
     36     *
    3737     * @param uri
    3838     *            the URI identifying the diagnostic
     
    5353    /**
    5454     * Get diagnostic's identifying URI.
    55      * 
     55     *
    5656     * @return diagnostic code
    5757     */
     
    6464     * Get supplementary information for this diagnostic. The format for this
    6565     * value is often specified by the diagnostic code.
    66      * 
     66     *
    6767     * @return supplementary information
    6868     */
     
    7474    /**
    7575     * Get human readable message.
    76      * 
     76     *
    7777     * @return human readable message
    7878     */
  • SRUClient/trunk/src/main/java/eu/clarin/sru/client/SRUExplainHandler.java

    r2936 r5750  
    11/**
    2  * This software is copyright (c) 2011-2013 by
     2 * This software is copyright (c) 2012-2014 by
    33 *  - Institut fuer Deutsche Sprache (http://www.ids-mannheim.de)
    44 * This is free software. You can redistribute it
  • SRUClient/trunk/src/main/java/eu/clarin/sru/client/SRUExplainRecordData.java

    r2995 r5750  
    11/**
    2  * This software is copyright (c) 2011-2013 by
     2 * This software is copyright (c) 2012-2014 by
    33 *  - Institut fuer Deutsche Sprache (http://www.ids-mannheim.de)
    44 * This is free software. You can redistribute it
  • SRUClient/trunk/src/main/java/eu/clarin/sru/client/SRUExplainRecordDataParser.java

    r2995 r5750  
    11/**
    2  * This software is copyright (c) 2011-2013 by
     2 * This software is copyright (c) 2012-2014 by
    33 *  - Institut fuer Deutsche Sprache (http://www.ids-mannheim.de)
    44 * This is free software. You can redistribute it
  • SRUClient/trunk/src/main/java/eu/clarin/sru/client/SRUExplainRequest.java

    r2997 r5750  
    11/**
    2  * This software is copyright (c) 2011-2013 by
     2 * This software is copyright (c) 2012-2014 by
    33 *  - Institut fuer Deutsche Sprache (http://www.ids-mannheim.de)
    44 * This is free software. You can redistribute it
     
    4242    /**
    4343     * Constructor.
    44      * 
     44     *
    4545     * @param baseURI
    4646     *            the baseURI of the endpoint
     
    5353    /**
    5454     * Set the requested record packing.
    55      * 
     55     *
    5656     * @param recordPacking
    5757     *            the requested record packing
     
    8080     * Enable or disable parsing of explain record data (ZeeRex record) of the
    8181     * explain response.
    82      * 
     82     *
    8383     * @param enabled
    8484     *            <code>true</code> enabled parsing, <code>false</code> disables
     
    8888        this.parseRecordDataEnabled = enabled;
    8989    }
    90    
     90
    9191
    9292    /**
    9393     * Check, whether the record data of a explain response (ZeeRex record)
    9494     * shall be parsed or not.
    95      * 
     95     *
    9696     * @return <code>true</code> if parsing is enabled, <code>false</code>
    9797     *         otherwise
  • SRUClient/trunk/src/main/java/eu/clarin/sru/client/SRUExplainResponse.java

    r2466 r5750  
    11/**
    2  * This software is copyright (c) 2011-2013 by
     2 * This software is copyright (c) 2012-2014 by
    33 *  - Institut fuer Deutsche Sprache (http://www.ids-mannheim.de)
    44 * This is free software. You can redistribute it
  • SRUClient/trunk/src/main/java/eu/clarin/sru/client/SRURecord.java

    r2466 r5750  
    11/**
    2  * This software is copyright (c) 2011-2013 by
     2 * This software is copyright (c) 2012-2014 by
    33 *  - Institut fuer Deutsche Sprache (http://www.ids-mannheim.de)
    44 * This is free software. You can redistribute it
  • SRUClient/trunk/src/main/java/eu/clarin/sru/client/SRURecordData.java

    r2864 r5750  
    11/**
    2  * This software is copyright (c) 2011-2013 by
     2 * This software is copyright (c) 2012-2014 by
    33 *  - Institut fuer Deutsche Sprache (http://www.ids-mannheim.de)
    44 * This is free software. You can redistribute it
     
    1919/**
    2020 * Interface for parsed record data.
    21  * 
     21 *
    2222 */
    2323public interface SRURecordData {
     
    2626     * This record is transient. If you want to store the data to process it
    2727     * later, you need to create a copy of the data.
    28      * 
     28     *
    2929     * @return <code>true</code>, if record is transient,
    3030     *         <code>false</code> otherwise
     
    3535    /**
    3636     * The record schema for this record.
    37      * 
     37     *
    3838     * @return the record schema
    3939     */
  • SRUClient/trunk/src/main/java/eu/clarin/sru/client/SRURecordDataParser.java

    r2946 r5750  
    11/**
    2  * This software is copyright (c) 2011-2013 by
     2 * This software is copyright (c) 2012-2014 by
    33 *  - Institut fuer Deutsche Sprache (http://www.ids-mannheim.de)
    44 * This is free software. You can redistribute it
  • SRUClient/trunk/src/main/java/eu/clarin/sru/client/SRURecordPacking.java

    r2466 r5750  
    11/**
    2  * This software is copyright (c) 2011-2013 by
     2 * This software is copyright (c) 2012-2014 by
    33 *  - Institut fuer Deutsche Sprache (http://www.ids-mannheim.de)
    44 * This is free software. You can redistribute it
  • SRUClient/trunk/src/main/java/eu/clarin/sru/client/SRUScanHandler.java

    r2466 r5750  
    11/**
    2  * This software is copyright (c) 2011-2013 by
     2 * This software is copyright (c) 2012-2014 by
    33 *  - Institut fuer Deutsche Sprache (http://www.ids-mannheim.de)
    44 * This is free software. You can redistribute it
  • SRUClient/trunk/src/main/java/eu/clarin/sru/client/SRUScanRequest.java

    r2959 r5750  
    11/**
    2  * This software is copyright (c) 2011-2013 by
     2 * This software is copyright (c) 2012-2014 by
    33 *  - Institut fuer Deutsche Sprache (http://www.ids-mannheim.de)
    44 * This is free software. You can redistribute it
     
    5555    }
    5656
    57    
     57
    5858    /**
    5959     * Constructor.
  • SRUClient/trunk/src/main/java/eu/clarin/sru/client/SRUScanResponse.java

    r2466 r5750  
    11/**
    2  * This software is copyright (c) 2011-2013 by
     2 * This software is copyright (c) 2012-2014 by
    33 *  - Institut fuer Deutsche Sprache (http://www.ids-mannheim.de)
    44 * This is free software. You can redistribute it
  • SRUClient/trunk/src/main/java/eu/clarin/sru/client/SRUSearchRetrieveHandler.java

    r2466 r5750  
    11/**
    2  * This software is copyright (c) 2011-2013 by
     2 * This software is copyright (c) 2012-2014 by
    33 *  - Institut fuer Deutsche Sprache (http://www.ids-mannheim.de)
    44 * This is free software. You can redistribute it
  • SRUClient/trunk/src/main/java/eu/clarin/sru/client/SRUSearchRetrieveRequest.java

    r2959 r5750  
    11/**
    2  * This software is copyright (c) 2011-2013 by
     2 * This software is copyright (c) 2012-2014 by
    33 *  - Institut fuer Deutsche Sprache (http://www.ids-mannheim.de)
    44 * This is free software. You can redistribute it
  • SRUClient/trunk/src/main/java/eu/clarin/sru/client/SRUSearchRetrieveResponse.java

    r2466 r5750  
    11/**
    2  * This software is copyright (c) 2011-2013 by
     2 * This software is copyright (c) 2012-2014 by
    33 *  - Institut fuer Deutsche Sprache (http://www.ids-mannheim.de)
    44 * This is free software. You can redistribute it
  • SRUClient/trunk/src/main/java/eu/clarin/sru/client/SRUSimpleClient.java

    r5748 r5750  
    11/**
    2  * This software is copyright (c) 2011-2013 by
     2 * This software is copyright (c) 2012-2014 by
    33 *  - Institut fuer Deutsche Sprache (http://www.ids-mannheim.de)
    44 * This is free software. You can redistribute it
  • SRUClient/trunk/src/main/java/eu/clarin/sru/client/SRUSurrogateRecordData.java

    r2466 r5750  
    11/**
    2  * This software is copyright (c) 2011-2013 by
     2 * This software is copyright (c) 2012-2014 by
    33 *  - Institut fuer Deutsche Sprache (http://www.ids-mannheim.de)
    44 * This is free software. You can redistribute it
  • SRUClient/trunk/src/main/java/eu/clarin/sru/client/SRUTerm.java

    r2466 r5750  
    11/**
    2  * This software is copyright (c) 2011-2013 by
     2 * This software is copyright (c) 2012-2014 by
    33 *  - Institut fuer Deutsche Sprache (http://www.ids-mannheim.de)
    44 * This is free software. You can redistribute it
  • SRUClient/trunk/src/main/java/eu/clarin/sru/client/SRUThreadedClient.java

    r5748 r5750  
    11/**
    2  * This software is copyright (c) 2011-2013 by
     2 * This software is copyright (c) 2012-2014 by
    33 *  - Institut fuer Deutsche Sprache (http://www.ids-mannheim.de)
    44 * This is free software. You can redistribute it
  • SRUClient/trunk/src/main/java/eu/clarin/sru/client/SRUVersion.java

    r2466 r5750  
    11/**
    2  * This software is copyright (c) 2011-2013 by
     2 * This software is copyright (c) 2012-2014 by
    33 *  - Institut fuer Deutsche Sprache (http://www.ids-mannheim.de)
    44 * This is free software. You can redistribute it
  • SRUClient/trunk/src/main/java/eu/clarin/sru/client/SRUWhereInList.java

    r2466 r5750  
    11/**
    2  * This software is copyright (c) 2011-2013 by
     2 * This software is copyright (c) 2012-2014 by
    33 *  - Institut fuer Deutsche Sprache (http://www.ids-mannheim.de)
    44 * This is free software. You can redistribute it
  • SRUClient/trunk/src/main/java/eu/clarin/sru/client/SRUXMLStreamReader.java

    r5368 r5750  
    11/**
    2  * This software is copyright (c) 2011-2013 by
     2 * This software is copyright (c) 2012-2014 by
    33 *  - Institut fuer Deutsche Sprache (http://www.ids-mannheim.de)
    44 * This is free software. You can redistribute it
  • SRUClient/trunk/src/main/java/eu/clarin/sru/client/XmlStreamReaderProxy.java

    r3000 r5750  
    11/**
    2  * This software is copyright (c) 2011-2013 by
     2 * This software is copyright (c) 2012-2014 by
    33 *  - Institut fuer Deutsche Sprache (http://www.ids-mannheim.de)
    44 * This is free software. You can redistribute it
  • SRUClient/trunk/src/main/java/eu/clarin/sru/client/XmlStreamReaderUtils.java

    r5743 r5750  
    11/**
    2  * This software is copyright (c) 2011-2013 by
     2 * This software is copyright (c) 2012-2014 by
    33 *  - Institut fuer Deutsche Sprache (http://www.ids-mannheim.de)
    44 * This is free software. You can redistribute it
  • SRUClient/trunk/src/main/java/eu/clarin/sru/client/fcs/AbstractClarinFCSRecordDataParser.java

    r5743 r5750  
    3333import eu.clarin.sru.client.XmlStreamReaderUtils;
    3434
     35
     36/**
     37 * An abstract base class for CLARIN-FCS record data parsers.
     38 */
    3539abstract class AbstractClarinFCSRecordDataParser implements SRURecordDataParser {
    3640    protected static final Logger logger =
  • SRUClient/trunk/src/main/java/eu/clarin/sru/client/fcs/ClarinFCSClientBuilder.java

    r5749 r5750  
     1/**
     2 * This software is copyright (c) 2012-2014 by
     3 *  - Institut fuer Deutsche Sprache (http://www.ids-mannheim.de)
     4 * This is free software. You can redistribute it
     5 * and/or modify it under the terms described in
     6 * the GNU General Public License v3 of which you
     7 * should have received a copy. Otherwise you can download
     8 * it from
     9 *
     10 *   http://www.gnu.org/licenses/gpl-3.0.txt
     11 *
     12 * @copyright Institut fuer Deutsche Sprache (http://www.ids-mannheim.de)
     13 *
     14 * @license http://www.gnu.org/licenses/gpl-3.0.txt
     15 *  GNU General Public License v3
     16 */
    117package eu.clarin.sru.client.fcs;
    218
  • SRUClient/trunk/src/main/java/eu/clarin/sru/client/fcs/ClarinFCSRecordData.java

    r5743 r5750  
    11/**
    2  * This software is copyright (c) 2012-2013 by
     2 * This software is copyright (c) 2012-2014 by
    33 *  - Institut fuer Deutsche Sprache (http://www.ids-mannheim.de)
    44 * This is free software. You can redistribute it
     
    3434    /**
    3535     * The legacy record schema for CLARIN-FCS records.
    36      * 
     36     *
    3737     * @deprecated Only use to talk to legacy clients
    3838     */
  • SRUClient/trunk/src/main/java/eu/clarin/sru/client/fcs/ClarinFCSRecordDataParser.java

    r5743 r5750  
    11/**
    2  * This software is copyright (c) 2012-2013 by
     2 * This software is copyright (c) 2012-2014 by
    33 *  - Institut fuer Deutsche Sprache (http://www.ids-mannheim.de)
    44 * This is free software. You can redistribute it
  • SRUClient/trunk/src/main/java/eu/clarin/sru/client/fcs/DataView.java

    r5749 r5750  
    11/**
    2  * This software is copyright (c) 2012-2013 by
     2 * This software is copyright (c) 2012-2014 by
    33 *  - Institut fuer Deutsche Sprache (http://www.ids-mannheim.de)
    44 * This is free software. You can redistribute it
  • SRUClient/trunk/src/main/java/eu/clarin/sru/client/fcs/DataViewGenericDOM.java

    r5749 r5750  
    11/**
    2  * This software is copyright (c) 2012-2013 by
     2 * This software is copyright (c) 2012-2014 by
    33 *  - Institut fuer Deutsche Sprache (http://www.ids-mannheim.de)
    44 * This is free software. You can redistribute it
     
    3737    /**
    3838     * Get the DataView content.
    39      * 
     39     *
    4040     * @return the DataView content as DOM document.
    4141     */
  • SRUClient/trunk/src/main/java/eu/clarin/sru/client/fcs/DataViewGenericString.java

    r5749 r5750  
    11/**
    2  * This software is copyright (c) 2012-2013 by
     2 * This software is copyright (c) 2012-2014 by
    33 *  - Institut fuer Deutsche Sprache (http://www.ids-mannheim.de)
    44 * This is free software. You can redistribute it
     
    3434    /**
    3535     * Get DataView content.
    36      * 
     36     *
    3737     * @return the DataView content as String.
    3838     */
  • SRUClient/trunk/src/main/java/eu/clarin/sru/client/fcs/DataViewHits.java

    r5749 r5750  
     1/**
     2 * This software is copyright (c) 2012-2014 by
     3 *  - Institut fuer Deutsche Sprache (http://www.ids-mannheim.de)
     4 * This is free software. You can redistribute it
     5 * and/or modify it under the terms described in
     6 * the GNU General Public License v3 of which you
     7 * should have received a copy. Otherwise you can download
     8 * it from
     9 *
     10 *   http://www.gnu.org/licenses/gpl-3.0.txt
     11 *
     12 * @copyright Institut fuer Deutsche Sprache (http://www.ids-mannheim.de)
     13 *
     14 * @license http://www.gnu.org/licenses/gpl-3.0.txt
     15 *  GNU General Public License v3
     16 */
    117package eu.clarin.sru.client.fcs;
    218
     
    6985    /**
    7086     * Get the text content of the hit. Usually this is complete sentence.
    71      * 
     87     *
    7288     * @return the text content of the hit
    7389     */
     
    7995    /**
    8096     * Get the offsets pointing to range in the text content that yield the hit.
    81      * 
     97     *
    8298     * @param idx
    8399     *            the hit to retrieve. Must be larger than <code>0</code> and
  • SRUClient/trunk/src/main/java/eu/clarin/sru/client/fcs/DataViewParser.java

    r5749 r5750  
    11/**
    2  * This software is copyright (c) 2012-2013 by
     2 * This software is copyright (c) 2012-2014 by
    33 *  - Institut fuer Deutsche Sprache (http://www.ids-mannheim.de)
    44 * This is free software. You can redistribute it
  • SRUClient/trunk/src/main/java/eu/clarin/sru/client/fcs/DataViewParserGenericDOM.java

    r5749 r5750  
    11/**
    2  * This software is copyright (c) 2012-2013 by
     2 * This software is copyright (c) 2012-2014 by
    33 *  - Institut fuer Deutsche Sprache (http://www.ids-mannheim.de)
    44 * This is free software. You can redistribute it
     
    3838 * An implementation of a Data View parser that stores the content of a Data
    3939 * View in DOM representation.
    40  * 
     40 *
    4141 * @see DataViewGenericDOM
    4242 */
  • SRUClient/trunk/src/main/java/eu/clarin/sru/client/fcs/DataViewParserGenericString.java

    r5749 r5750  
    11/**
    2  * This software is copyright (c) 2012-2013 by
     2 * This software is copyright (c) 2012-2014 by
    33 *  - Institut fuer Deutsche Sprache (http://www.ids-mannheim.de)
    44 * This is free software. You can redistribute it
     
    3030 * An implementation of a DataView parser that stores the content of a Data
    3131 * Views in String representation.
    32  * 
     32 *
    3333 * @see DataViewGenericString
    3434 */
  • SRUClient/trunk/src/main/java/eu/clarin/sru/client/fcs/DataViewParserHits.java

    r5749 r5750  
     1/**
     2 * This software is copyright (c) 2012-2014 by
     3 *  - Institut fuer Deutsche Sprache (http://www.ids-mannheim.de)
     4 * This is free software. You can redistribute it
     5 * and/or modify it under the terms described in
     6 * the GNU General Public License v3 of which you
     7 * should have received a copy. Otherwise you can download
     8 * it from
     9 *
     10 *   http://www.gnu.org/licenses/gpl-3.0.txt
     11 *
     12 * @copyright Institut fuer Deutsche Sprache (http://www.ids-mannheim.de)
     13 *
     14 * @license http://www.gnu.org/licenses/gpl-3.0.txt
     15 *  GNU General Public License v3
     16 */
    117package eu.clarin.sru.client.fcs;
    218
  • SRUClient/trunk/src/main/java/eu/clarin/sru/client/fcs/DataViewParserKWIC.java

    r5749 r5750  
    11/**
    2  * This software is copyright (c) 2012-2013 by
     2 * This software is copyright (c) 2012-2014 by
    33 *  - Institut fuer Deutsche Sprache (http://www.ids-mannheim.de)
    44 * This is free software. You can redistribute it
  • SRUClient/trunk/src/main/java/eu/clarin/sru/client/fcs/LegacyClarinFCSRecordDataParser.java

    r5749 r5750  
     1/**
     2 * This software is copyright (c) 2012-2014 by
     3 *  - Institut fuer Deutsche Sprache (http://www.ids-mannheim.de)
     4 * This is free software. You can redistribute it
     5 * and/or modify it under the terms described in
     6 * the GNU General Public License v3 of which you
     7 * should have received a copy. Otherwise you can download
     8 * it from
     9 *
     10 *   http://www.gnu.org/licenses/gpl-3.0.txt
     11 *
     12 * @copyright Institut fuer Deutsche Sprache (http://www.ids-mannheim.de)
     13 *
     14 * @license http://www.gnu.org/licenses/gpl-3.0.txt
     15 *  GNU General Public License v3
     16 */
    117package eu.clarin.sru.client.fcs;
    218
     
    2036        AbstractClarinFCSRecordDataParser {
    2137
    22    
     38
    2339    /**
    2440     * Constructor.
  • SRUClient/trunk/src/main/java/eu/clarin/sru/client/fcs/Resource.java

    r2467 r5750  
    11/**
    2  * This software is copyright (c) 2012-2013 by
     2 * This software is copyright (c) 2012-2014 by
    33 *  - Institut fuer Deutsche Sprache (http://www.ids-mannheim.de)
    44 * This is free software. You can redistribute it
  • SRUClient/trunk/src/test/java/eu/clarin/sru/client/TestClient.java

    r5748 r5750  
    11/**
    2  * This software is copyright (c) 2011-2013 by
     2 * This software is copyright (c) 2012-2014 by
    33 *  - Institut fuer Deutsche Sprache (http://www.ids-mannheim.de)
    44 * This is free software. You can redistribute it
  • SRUClient/trunk/src/test/java/eu/clarin/sru/client/TestSimpleClient.java

    r5748 r5750  
    11/**
    2  * This software is copyright (c) 2011-2013 by
     2 * This software is copyright (c) 2012-2014 by
    33 *  - Institut fuer Deutsche Sprache (http://www.ids-mannheim.de)
    44 * This is free software. You can redistribute it
  • SRUClient/trunk/src/test/java/eu/clarin/sru/client/TestThreadedClient.java

    r5748 r5750  
    11/**
    2  * This software is copyright (c) 2011-2013 by
     2 * This software is copyright (c) 2012-2014 by
    33 *  - Institut fuer Deutsche Sprache (http://www.ids-mannheim.de)
    44 * This is free software. You can redistribute it
  • SRUClient/trunk/src/test/java/eu/clarin/sru/client/TestThreadedClientCallback.java

    r5748 r5750  
    11/**
    2  * This software is copyright (c) 2011-2013 by
     2 * This software is copyright (c) 2012-2014 by
    33 *  - Institut fuer Deutsche Sprache (http://www.ids-mannheim.de)
    44 * This is free software. You can redistribute it
  • SRUClient/trunk/src/test/java/eu/clarin/sru/client/TestUtils.java

    r5743 r5750  
    11/**
    2 /**
    3  * This software is copyright (c) 2011-2013 by
     2 * This software is copyright (c) 2012-2014 by
    43 *  - Institut fuer Deutsche Sprache (http://www.ids-mannheim.de)
    54 * This is free software. You can redistribute it
Note: See TracChangeset for help on using the changeset viewer.