OpenLayers OpenLayers

Changeset 8026

Show
Ignore:
Timestamp:
09/17/08 13:30:01 (3 months ago)
Author:
tschaub
Message:

Strategy and protocol ndoc cleanup. (see #1738)

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/openlayers/lib/OpenLayers/Protocol.js

    r7883 r8026  
    1212    /** 
    1313     * Property: format 
    14      * {<OpenLayers.Format>} 
     14     * {<OpenLayers.Format>} The format used by this protocol. 
    1515     */ 
    1616    format: null, 
     
    1818    /** 
    1919     * Property: options 
    20      * Any options sent to the constructor. 
     20     * {Object} Any options sent to the constructor. 
    2121     */ 
    2222    options: null, 
  • trunk/openlayers/lib/OpenLayers/Protocol/HTTP.js

    r8000 r8026  
    2020    /** 
    2121     * Property: url 
    22      * {String} - Service URL, read-only, set through the options 
     22     * {String} Service URL, read-only, set through the options 
    2323     *     passed to constructor. 
    2424     */ 
     
    2727    /** 
    2828     * Property: headers 
    29      * {Object} - HTTP request headers, read-only, set through the options 
     29     * {Object} HTTP request headers, read-only, set through the options 
    3030     *     passed to the constructor, 
    3131     *     Example: {'Content-Type': 'plain/text'} 
     
    3535    /** 
    3636     * Property: params 
    37      * {Object} - Parameters of GET requests, read-only, set through the options 
     37     * {Object} Parameters of GET requests, read-only, set through the options 
    3838     *     passed to the constructor, 
    3939     *     Example: {'bbox': '5,5,5,5'} 
     
    4343    /** 
    4444     * Property: callback 
    45      * {Object} - Function to be called when the <read>, <create>, 
     45     * {Object} Function to be called when the <read>, <create>, 
    4646     *     <update>, <delete> or <commit> operation completes, read-only, 
    4747     *     set through the options passed to the constructor. 
     
    5151    /** 
    5252     * Property: scope 
    53      * {Object} - Callback execution scope, read-only, set through the 
     53     * {Object} Callback execution scope, read-only, set through the 
    5454     *     options passed to the constructor. 
    5555     */ 
  • trunk/openlayers/lib/OpenLayers/Strategy.js

    r7708 r8026  
    1212    /** 
    1313     * Property: layer 
    14      * {<OpenLayers.Layer.Vector>} 
     14     * {<OpenLayers.Layer.Vector>} The layer this strategy belongs to. 
    1515     */ 
    1616    layer: null, 
     
    7070 
    7171    /** 
    72      * Method: setLayer. 
     72     * Method: setLayer 
     73     * Called to set the <layer> property. 
    7374     * 
    7475     * Parameters: