File shuffle.

This commit is contained in:
Tim Schaub
2012-06-19 09:45:08 +02:00
parent f24b518f61
commit bd6b52c2cd
3 changed files with 0 additions and 0 deletions

34
src/ol/Projection.js Normal file
View File

@@ -0,0 +1,34 @@
goog.provide('ol.Projection');
/**
* @constructor
*/
ol.Projection = function() {
/**
* @private
* @type {string|undefined}
*/
this.code_ = undefined;
};
/**
* @return {string|undefined} Code.
*/
ol.Projection.prototype.getCode = function() {
return this.code_;
};
/**
* @param {string|undefined} code Code.
* @return {ol.Projection} This.
*/
ol.Projection.prototype.setCode = function(code) {
this.code_ = code;
return this;
};