Subversion Repositories Applications.papyrus

Rev

Rev 1372 | Go to most recent revision | 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.uuid.NilGenerator");
14
dojo.uuid.NilGenerator = new function () {
15
	this.generate = function (returnType) {
16
		var returnValue = "00000000-0000-0000-0000-000000000000";
17
		if (returnType && (returnType != String)) {
18
			returnValue = new returnType(returnValue);
19
		}
20
		return returnValue;
21
	};
22
}();
23