Upgrade to ExtJS 3.0.0 - Released 07/06/2009
[extjs.git] / source / widgets / grid / AbstractSelectionModel.js
diff --git a/source/widgets/grid/AbstractSelectionModel.js b/source/widgets/grid/AbstractSelectionModel.js
deleted file mode 100644 (file)
index e66a7df..0000000
+++ /dev/null
@@ -1,49 +0,0 @@
-/*\r
- * Ext JS Library 2.2.1\r
- * Copyright(c) 2006-2009, Ext JS, LLC.\r
- * licensing@extjs.com\r
- * \r
- * http://extjs.com/license\r
- */\r
-\r
-/**\r
- * @class Ext.grid.AbstractSelectionModel\r
- * @extends Ext.util.Observable\r
- * Abstract base class for grid SelectionModels.  It provides the interface that should be\r
- * implemented by descendant classes.  This class should not be directly instantiated.\r
- * @constructor\r
- */\r
-Ext.grid.AbstractSelectionModel = function(){\r
-    this.locked = false;\r
-    Ext.grid.AbstractSelectionModel.superclass.constructor.call(this);\r
-};\r
-\r
-Ext.extend(Ext.grid.AbstractSelectionModel, Ext.util.Observable,  {\r
-    /** @ignore Called by the grid automatically. Do not call directly. */\r
-    init : function(grid){\r
-        this.grid = grid;\r
-        this.initEvents();\r
-    },\r
-\r
-    /**\r
-     * Locks the selections.\r
-     */\r
-    lock : function(){\r
-        this.locked = true;\r
-    },\r
-\r
-    /**\r
-     * Unlocks the selections.\r
-     */\r
-    unlock : function(){\r
-        this.locked = false;\r
-    },\r
-\r
-    /**\r
-     * Returns true if the selections are locked.\r
-     * @return {Boolean}\r
-     */\r
-    isLocked : function(){\r
-        return this.locked;\r
-    }\r
-});
\ No newline at end of file