Subversion Repositories Applications.papyrus

Rev

Rev 1318 | 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
 
1422 alexandre_ 11
 
12
 
1318 alexandre_ 13
dojo.provide("dojo.data.old.Value");
14
dojo.require("dojo.lang.assert");
15
dojo.data.old.Value = function (value) {
16
	this._value = value;
17
	this._type = null;
18
};
19
dojo.data.old.Value.prototype.toString = function () {
20
	return this._value.toString();
21
};
22
dojo.data.old.Value.prototype.getValue = function () {
23
	return this._value;
24
};
25
dojo.data.old.Value.prototype.getType = function () {
26
	dojo.unimplemented("dojo.data.old.Value.prototype.getType");
27
	return this._type;
28
};
29
dojo.data.old.Value.prototype.compare = function () {
30
	dojo.unimplemented("dojo.data.old.Value.prototype.compare");
31
};
32
dojo.data.old.Value.prototype.isEqual = function () {
33
	dojo.unimplemented("dojo.data.old.Value.prototype.isEqual");
34
};
35