OpenLayers OpenLayers

Changeset 7705

Show
Ignore:
Timestamp:
08/05/08 02:14:00 (5 months ago)
Author:
fredj
Message:

ND comment fix, no functional change

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • sandbox/vector-behavior/lib/OpenLayers/Strategy/Autosave.js

    r7508 r7705  
     1/* Copyright (c) 2006-2008 MetaCarta, Inc., published under the Clear BSD 
     2 * license.  See http://svn.openlayers.org/trunk/openlayers/license.txt for the 
     3 * full text of the license. */ 
     4 
    15/** 
    26 * @requires OpenLayers/Strategy.js 
     
    812 * 
    913 * Inherits from: 
    10  *  - OpenLayers.Strategy.Save 
     14 *  - <OpenLayers.Strategy.Save> 
    1115 */ 
    1216OpenLayers.Strategy.Autosave = OpenLayers.Class(OpenLayers.Strategy.Save, { 
    13      
    14   
     17 
    1518    /** 
    1619     * Constructor: OpenLayers.Strategy.Autosave 
  • sandbox/vector-behavior/lib/OpenLayers/Strategy/BBOX.js

    r7555 r7705  
     1/* Copyright (c) 2006-2008 MetaCarta, Inc., published under the Clear BSD 
     2 * license.  See http://svn.openlayers.org/trunk/openlayers/license.txt for the 
     3 * full text of the license. */ 
     4 
    15/** 
    26 * @requires OpenLayers/Strategy.js 
     
    913 * 
    1014 * Inherits from: 
    11  *  - OpenLayers.Strategy 
     15 *  - <OpenLayers.Strategy> 
    1216 */ 
    1317OpenLayers.Strategy.BBOX = OpenLayers.Class(OpenLayers.Strategy, { 
  • sandbox/vector-behavior/lib/OpenLayers/Strategy/Cluster.js

    r7508 r7705  
     1/* Copyright (c) 2006-2008 MetaCarta, Inc., published under the Clear BSD 
     2 * license.  See http://svn.openlayers.org/trunk/openlayers/license.txt for the 
     3 * full text of the license. */ 
     4 
     5/** 
     6 * @requires OpenLayers/Strategy.js 
     7 */ 
     8 
    19/** 
    210 * Class: OpenLayers.Strategy.Cluster 
    311 * Strategy for vector feature clustering. 
     12 * 
     13 * Inherits from: 
     14 *  - <OpenLayers.Strategy> 
    415 */ 
    516OpenLayers.Strategy.Cluster = OpenLayers.Class(OpenLayers.Strategy, { 
  • sandbox/vector-behavior/lib/OpenLayers/Strategy/Fixed.js

    r7693 r7705  
     1/* Copyright (c) 2006-2008 MetaCarta, Inc., published under the Clear BSD 
     2 * license.  See http://svn.openlayers.org/trunk/openlayers/license.txt for the 
     3 * full text of the license. */ 
    14/** 
    25 * @requires OpenLayers/Strategy.js 
     
    811 * 
    912 * Inherits from: 
    10  *  - OpenLayers.Strategy 
     13 *  - <OpenLayers.Strategy> 
    1114 */ 
    1215OpenLayers.Strategy.Fixed = OpenLayers.Class(OpenLayers.Strategy, { 
  • sandbox/vector-behavior/lib/OpenLayers/Strategy/GreedySave.js

    r7508 r7705  
     1/* Copyright (c) 2006-2008 MetaCarta, Inc., published under the Clear BSD 
     2 * license.  See http://svn.openlayers.org/trunk/openlayers/license.txt for the 
     3 * full text of the license. */ 
     4 
    15/** 
    26 * @requires OpenLayers/Strategy/Save.js 
     
    1317 * 
    1418 * Inherits from: 
    15  *  - OpenLayers.Strategy.Save 
     19 *  - <OpenLayers.Strategy.Save> 
    1620 */ 
    1721OpenLayers.Strategy.GreedySave = OpenLayers.Class(OpenLayers.Strategy.Save, { 
  • sandbox/vector-behavior/lib/OpenLayers/Strategy/Grid.js

    r7659 r7705  
     1/* Copyright (c) 2006-2008 MetaCarta, Inc., published under the Clear BSD 
     2 * license.  See http://svn.openlayers.org/trunk/openlayers/license.txt for the 
     3 * full text of the license. */ 
     4 
    15/** 
    26 * @requires OpenLayers/Strategy.js 
     
    1216 * 
    1317 * Inherits from: 
    14  *  - OpenLayers.Strategy 
     18 *  - <OpenLayers.Strategy> 
    1519 */ 
    1620OpenLayers.Strategy.Grid = OpenLayers.Class(OpenLayers.Strategy, { 
  • sandbox/vector-behavior/lib/OpenLayers/Strategy/Paging.js

    r7508 r7705  
     1/* Copyright (c) 2006-2008 MetaCarta, Inc., published under the Clear BSD 
     2 * license.  See http://svn.openlayers.org/trunk/openlayers/license.txt for the 
     3 * full text of the license. */ 
     4 
     5/** 
     6 * @requires OpenLayers/Strategy.js 
     7 */ 
     8 
    19/** 
    210 * Class: OpenLayers.Strategy.Paging 
    311 * Strategy for vector feature paging 
     12 * 
     13 * Inherits from: 
     14 *  - <OpenLayers.Strategy> 
    415 */ 
    516OpenLayers.Strategy.Paging = OpenLayers.Class(OpenLayers.Strategy, { 
  • sandbox/vector-behavior/lib/OpenLayers/Strategy/Save.js

    r7508 r7705  
     1/* Copyright (c) 2006-2008 MetaCarta, Inc., published under the Clear BSD 
     2 * license.  See http://svn.openlayers.org/trunk/openlayers/license.txt for the 
     3 * full text of the license. */ 
     4 
    15/** 
    26 * @requires OpenLayers/Strategy.js 
     
    812 * 
    913 * Inherits from: 
    10  *  - OpenLayers.Strategy 
     14 *  - <OpenLayers.Strategy> 
    1115 */ 
    1216OpenLayers.Strategy.Save = OpenLayers.Class(OpenLayers.Strategy, {