Strategy and protocol ndoc cleanup. (see #1738)
git-svn-id: http://svn.openlayers.org/trunk/openlayers@8026 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
This commit is contained in:
@@ -11,13 +11,13 @@ OpenLayers.Protocol = OpenLayers.Class({
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Property: format
|
* Property: format
|
||||||
* {<OpenLayers.Format>}
|
* {<OpenLayers.Format>} The format used by this protocol.
|
||||||
*/
|
*/
|
||||||
format: null,
|
format: null,
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Property: options
|
* Property: options
|
||||||
* Any options sent to the constructor.
|
* {Object} Any options sent to the constructor.
|
||||||
*/
|
*/
|
||||||
options: null,
|
options: null,
|
||||||
|
|
||||||
|
|||||||
@@ -19,14 +19,14 @@ OpenLayers.Protocol.HTTP = OpenLayers.Class(OpenLayers.Protocol, {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Property: url
|
* Property: url
|
||||||
* {String} - Service URL, read-only, set through the options
|
* {String} Service URL, read-only, set through the options
|
||||||
* passed to constructor.
|
* passed to constructor.
|
||||||
*/
|
*/
|
||||||
url: null,
|
url: null,
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Property: headers
|
* Property: headers
|
||||||
* {Object} - HTTP request headers, read-only, set through the options
|
* {Object} HTTP request headers, read-only, set through the options
|
||||||
* passed to the constructor,
|
* passed to the constructor,
|
||||||
* Example: {'Content-Type': 'plain/text'}
|
* Example: {'Content-Type': 'plain/text'}
|
||||||
*/
|
*/
|
||||||
@@ -34,7 +34,7 @@ OpenLayers.Protocol.HTTP = OpenLayers.Class(OpenLayers.Protocol, {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Property: params
|
* Property: params
|
||||||
* {Object} - Parameters of GET requests, read-only, set through the options
|
* {Object} Parameters of GET requests, read-only, set through the options
|
||||||
* passed to the constructor,
|
* passed to the constructor,
|
||||||
* Example: {'bbox': '5,5,5,5'}
|
* Example: {'bbox': '5,5,5,5'}
|
||||||
*/
|
*/
|
||||||
@@ -42,7 +42,7 @@ OpenLayers.Protocol.HTTP = OpenLayers.Class(OpenLayers.Protocol, {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Property: callback
|
* Property: callback
|
||||||
* {Object} - Function to be called when the <read>, <create>,
|
* {Object} Function to be called when the <read>, <create>,
|
||||||
* <update>, <delete> or <commit> operation completes, read-only,
|
* <update>, <delete> or <commit> operation completes, read-only,
|
||||||
* set through the options passed to the constructor.
|
* set through the options passed to the constructor.
|
||||||
*/
|
*/
|
||||||
@@ -50,7 +50,7 @@ OpenLayers.Protocol.HTTP = OpenLayers.Class(OpenLayers.Protocol, {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Property: scope
|
* Property: scope
|
||||||
* {Object} - Callback execution scope, read-only, set through the
|
* {Object} Callback execution scope, read-only, set through the
|
||||||
* options passed to the constructor.
|
* options passed to the constructor.
|
||||||
*/
|
*/
|
||||||
scope: null,
|
scope: null,
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ OpenLayers.Strategy = OpenLayers.Class({
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Property: layer
|
* Property: layer
|
||||||
* {<OpenLayers.Layer.Vector>}
|
* {<OpenLayers.Layer.Vector>} The layer this strategy belongs to.
|
||||||
*/
|
*/
|
||||||
layer: null,
|
layer: null,
|
||||||
|
|
||||||
@@ -69,7 +69,8 @@ OpenLayers.Strategy = OpenLayers.Class({
|
|||||||
},
|
},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Method: setLayer.
|
* Method: setLayer
|
||||||
|
* Called to set the <layer> property.
|
||||||
*
|
*
|
||||||
* Parameters:
|
* Parameters:
|
||||||
* {<OpenLayers.Layer.Vector>}
|
* {<OpenLayers.Layer.Vector>}
|
||||||
|
|||||||
Reference in New Issue
Block a user