| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151 |
- //function ArrayList() {
- // var args = ArrayList.arguments;
- // var initialCapacity = 10;
- //
- // if (args != null && args.length > 0) {
- // initialCapacity = args[0];
- // }
- //
- // var elementData = new Array(initialCapacity);
- // var elementCount = 0;
-
- // ArrayList.prototype.size = function() {
- // return elementCount;
- // };
- //
- // this.add = function (element) {
- // //alert("add");
- // ensureCapacity(elementCount + 1);
- // elementData[elementCount++] = element;
- // return true;
- // };
- //
- // this.addElementAt = function (index, element) {
- // //alert("addElementAt");
- // if (index > elementCount || index < 0) {
- // alert("IndexOutOfBoundsException, Index: " + index + ", Size: " + elementCount);
- // return;
- // //throw (new Error(-1,"IndexOutOfBoundsException, Index: "+index+", Size: " + elementCount));
- // }
- // ensureCapacity(elementCount + 1);
- // for (var i = elementCount + 1; i > index; i--) {
- // elementData[i] = elementData[i - 1];
- // }
- // elementData[index] = element;
- // elementCount++;
- // };
- //
- // this.setElementAt = function (index, element) {
- // //alert("setElementAt");
- // if (index > elementCount || index < 0) {
- // alert("IndexOutOfBoundsException, Index: " + index + ", Size: " + elementCount);
- // return;
- // //throw (new Error(-1,"IndexOutOfBoundsException, Index: "+index+", Size: " + elementCount));
- // }
- // elementData[index] = element;
- // };
- //
- // this.toString = function () {
- // //alert("toString()");
- // var str = "{";
- // for (var i = 0; i < elementCount; i++) {
- // if (i > 0) {
- // str += ",";
- // }
- // str += elementData[i];
- // }
- // str += "}";
- // return str;
- // };
- //
- // this.get = function (index) {
- // //alert("elementAt");
- // if (index >= elementCount) {
- // alert("ArrayIndexOutOfBoundsException, " + index + " >= " + elementCount);
- // return;
- // //throw ( new Error( -1,"ArrayIndexOutOfBoundsException, " + index + " >= " + elementCount ) );
- // }
- // return elementData[index];
- // };
- //
- // this.remove = function (index) {
- // if (index >= elementCount) {
- // alert("ArrayIndexOutOfBoundsException, " + index + " >= " + elementCount);
- // //return;
- // throw (new Error(-1, "ArrayIndexOutOfBoundsException, " + index + " >= " + elementCount));
- // }
- // var oldData = elementData[index];
- // for (var i = index; i < elementCount - 1; i++) {
- // elementData[i] = elementData[i + 1];
- // }
- // elementData[elementCount - 1] = null;
- // elementCount--;
- // return oldData;
- // };
- //
- // this.isEmpty = function () {
- // return elementCount == 0;
- // };
- //
- // this.indexOf = function (elem) {
- // //alert("indexOf");
- // for (var i = 0; i < elementCount; i++) {
- // if (elementData[i] == elem) {
- // return i;
- // }
- // }
- // return -1;
- // };
- //
- // this.lastIndexOf = function (elem) {
- // for (var i = elementCount - 1; i >= 0; i--) {
- // if (elementData[i] == elem) {
- // return i;
- // }
- // }
- // return -1;
- // };
- //
- // this.contains = function (elem) {
- // return this.indexOf(elem) >= 0;
- // };
- //
- // function ensureCapacity(minCapacity) {
- // var oldCapacity = elementData.length;
- // if (minCapacity > oldCapacity) {
- // var oldData = elementData;
- // var newCapacity = parseInt((oldCapacity * 3) / 2 + 1);
- // if (newCapacity < minCapacity) {
- // newCapacity = minCapacity;
- // }
- // elementData = new Array(newCapacity);
- // for (var i = 0; i < oldCapacity; i++) {
- // elementData[i] = oldData[i];
- // }
- // }
- // }
- //}
-
-
- function classify() {
- this.ID = 0;
- this.Name = "";;
- this.Sort = 0;
- this.Code = "";
- this.State = 0;
- this.Parent = 0;
- }
-
- classify.prototype.EditName = function(name) {
- this.Name = name;
- };
-
- classify.prototype.EditSort = function(sort) {
- this.Sort = sort;
-
-
};
- classify.prototype.EditCode = function(code) {
- this.Code = code;
-
- };
|