Changeset 5485
- Timestamp:
- 12/18/07 05:49:29 (1 year ago)
- Files:
-
- trunk/openlayers/lib/OpenLayers/Rule/Comparison.js (modified) (2 diffs)
- trunk/openlayers/lib/OpenLayers/Rule/FeatureId.js (modified) (1 diff)
- trunk/openlayers/lib/OpenLayers/Rule/Logical.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/openlayers/lib/OpenLayers/Rule/Comparison.js
r5440 r5485 65 65 66 66 /** 67 * Constructor: OpenLayers.Rule. Logical68 * Creates a logical rule (And, Or, Not).67 * Constructor: OpenLayers.Rule.Comparison 68 * Creates a comparison rule. 69 69 * 70 70 * Parameters: … … 76 76 * 77 77 * Returns: 78 * {<OpenLayers.Rule >}78 * {<OpenLayers.Rule.Comparison>} 79 79 */ 80 80 initialize: function(options) { 81 OpenLayers.Rule.prototype.initialize.apply( 82 this, [options]); 81 OpenLayers.Rule.prototype.initialize.apply(this, [options]); 83 82 }, 84 83 trunk/openlayers/lib/OpenLayers/Rule/FeatureId.js
r5484 r5485 33 33 * 34 34 * Returns: 35 * {<OpenLayers.Rule>} 36 * 37 * Inherits from: 38 * - <OpenLayers.Rule> 35 * {<OpenLayers.Rule.FeatureId>} 39 36 */ 40 37 initialize: function(options) { 41 38 this.fids = []; 42 OpenLayers.Rule.prototype.initialize.apply( 43 this, [options]); 39 OpenLayers.Rule.prototype.initialize.apply(this, [options]); 44 40 }, 45 41 trunk/openlayers/lib/OpenLayers/Rule/Logical.js
r5440 r5485 40 40 * 41 41 * Returns: 42 * {<OpenLayers.Rule >}42 * {<OpenLayers.Rule.Logical>} 43 43 */ 44 44 initialize: function(options) { 45 45 this.children = []; 46 OpenLayers.Rule.prototype.initialize.apply( 47 this, [options]); 46 OpenLayers.Rule.prototype.initialize.apply(this, [options]); 48 47 }, 49 48
