From 11835b18c9ede387cb7a0d930218b4515636be21 Mon Sep 17 00:00:00 2001 From: Tom Payne Date: Tue, 10 Jul 2012 18:32:17 +0200 Subject: [PATCH] Remove ol.coord.AccessorInterface --- src/ol/coord/AccessorInterface.js | 58 ------------------------------- 1 file changed, 58 deletions(-) delete mode 100644 src/ol/coord/AccessorInterface.js diff --git a/src/ol/coord/AccessorInterface.js b/src/ol/coord/AccessorInterface.js deleted file mode 100644 index 46fe6ab219..0000000000 --- a/src/ol/coord/AccessorInterface.js +++ /dev/null @@ -1,58 +0,0 @@ -goog.provide('ol.coord.AccessorInterface'); - -goog.require('ol.Projection'); - -/** - * The AccessorInterface in coord package - * - * @interface - * - * @param {number} x X. - * @param {number} y Y. - * @param {number=} opt_z Z. - * @param {ol.Projection=} opt_projection Projection. - */ -ol.coord.AccessorInterface = function(x, y, opt_z, opt_projection){ - -}; - -/** - * @return {number} X. - */ -ol.coord.AccessorInterface.prototype.getX = function(){}; - -/** - * @return {number} Y. - */ -ol.coord.AccessorInterface.prototype.getY = function(){}; - -/** - * @return {number|undefined} Z. - */ -ol.coord.AccessorInterface.prototype.getZ = function(){}; - -/** - * @return {ol.Projection|undefined} Projection. - */ -ol.coord.AccessorInterface.prototype.getProjection = function() {}; - -/** - * @param {number} x X. - */ -ol.coord.AccessorInterface.prototype.setX = function(x){}; - -/** - * @param {number} y Y. - */ -ol.coord.AccessorInterface.prototype.setY = function(y){}; - -/** - * @param {number|undefined} z Z. - */ -ol.coord.AccessorInterface.prototype.setZ = function(z){}; - -/** - * @param {ol.Projection} projection Projection. - */ -ol.coord.AccessorInterface.prototype.setProjection = function(projection) {}; -