/***********************************************************************************************************
 * su.bot.checkers.javascript.Square
 * Location: http://www.bot.su/library/su/bot/checkers/javascript/Square.js
 * Class Version Location: http://www.bot.su/library/su/bot/checkers/javascript/square/builds/20070528/Square.js
 * Index Version Location: http://www.bot.su/library/su/bot/checkers/javascript/square/index.html
 * © Bot.Su (http://www.bot.su/)
***********************************************************************************************************/

if (typeof su == "undefined") {su = {};};
if (typeof su.bot == "undefined") {su.bot = {};};
if (typeof su.bot.checkers == "undefined") {su.bot.checkers = {};};
if (typeof su.bot.checkers.javascript == "undefined") {su.bot.checkers.javascript = {};};

if (typeof su.bot.checkers.javascript.Square == "undefined") {
 su.bot.checkers.javascript.Square = function() {}; 
 
 su.bot.checkers.javascript.Square.prototype.i = "";
  su.bot.checkers.javascript.Square.prototype.getI = function () {return this.i;};
  su.bot.checkers.javascript.Square.prototype.setI = function (i) {this.i=i;}; 
 su.bot.checkers.javascript.Square.prototype.j = "";
  su.bot.checkers.javascript.Square.prototype.getJ = function () {return this.j;};
  su.bot.checkers.javascript.Square.prototype.setJ = function (j) {this.j=j;}; 
 su.bot.checkers.javascript.Square.prototype.s = false;
  su.bot.checkers.javascript.Square.prototype.getStatus = function () {return this.s;};
  su.bot.checkers.javascript.Square.prototype.setStatus = function (s) {this.s = s;}; 
  
 su.bot.checkers.javascript.Square.prototype.clone = function () {var c = new su.bot.checkers.javascript.Square();c.i=this.i;c.j=this.j;c.s=this.s;return c;};
 su.bot.checkers.javascript.Square.prototype.getId = function () {return "h"+this.i+"v"+this.j;};
  su.bot.checkers.javascript.Square.prototype.setId = function (id) {this.i = id.substr(1, id.indexOf("v")-1)/1; this.j = id.substr(id.indexOf("v")+1)/1;};
 su.bot.checkers.javascript.Square.prototype.getNormalized = function () {return "";};
 su.bot.checkers.javascript.Square.prototype.similarTo = function(square) {return (this.i==square.i&&this.j==square.j);};
};
