Subversion Repositories Applications.papyrus

Rev

Rev 1371 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1318 alexandre_ 1
/*
2
	Copyright (c) 2004-2006, The Dojo Foundation
3
	All Rights Reserved.
4
 
5
	Licensed under the Academic Free License version 2.1 or above OR the
6
	modified BSD license. For more information on Dojo licensing, see:
7
 
8
		http://dojotoolkit.org/community/licensing.shtml
9
*/
10
 
11
dojo.provide("dojo.data.old.Value");
12
dojo.require("dojo.lang.assert");
13
dojo.data.old.Value = function (value) {
14
	this._value = value;
15
	this._type = null;
16
};
17
dojo.data.old.Value.prototype.toString = function () {
18
	return this._value.toString();
19
};
20
dojo.data.old.Value.prototype.getValue = function () {
21
	return this._value;
22
};
23
dojo.data.old.Value.prototype.getType = function () {
24
	dojo.unimplemented("dojo.data.old.Value.prototype.getType");
25
	return this._type;
26
};
27
dojo.data.old.Value.prototype.compare = function () {
28
	dojo.unimplemented("dojo.data.old.Value.prototype.compare");
29
};
30
dojo.data.old.Value.prototype.isEqual = function () {
31
	dojo.unimplemented("dojo.data.old.Value.prototype.isEqual");
32
};
33