Ignore:
Timestamp:
2001-03-05T08:44:51+13:00 (23 years ago)
Author:
bas6
Message:

Documenting NzdlQuery, NzdlResponse, NzdlResultSet & NzdlServiceServer (removed some extraneous @see comments)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/java-client/org/nzdl/gsdl/service/NzdlQuery.java

    r2107 r2108  
    4141  /**     
    4242   * Creates an instance of NzdlQuery with an empty query string.
    43    *  Default values are: maxDocs 200, startResults= 1, endResults= 10,
    44    *  queryType= "ranked", caseFolding= true, stemming= false, queryTerm= "".
     43   * This can then be used as a constructor parameter when creating a
     44   * {@link NzdlRequest NzdlRequest} object for servicing by a
     45   * {@link NzdlService NzdlService} object.
     46   * Default values for a NzdlQuery object are: maxDocs 200, startResults= 1,
     47   *  endResults= 10, queryType= "ranked", caseFolding= true, stemming= false,
     48   * queryTerm= "".
    4549   */
    4650  public NzdlQuery() {
     
    101105
    102106  /**
    103   * Sets query to ignore word endings. Default is false.
    104   * @param stem if true, sets query to strip endings such as "...ing",
    105   * "...ed". If false, sets query to only match whole words.
     107  * Sets query to ignore word endings. Default is "false."
     108  * @param stem if "true", sets query to strip endings such as "...ing",
     109  * "...ed". If "false", sets query to only match whole words.
    106110  */
    107111  public void setStemming(String _stem) {
Note: See TracChangeset for help on using the changeset viewer.