summaryrefslogtreecommitdiff
path: root/js/dojo-1.7.2/dojox/mobile/RoundRectDataList.js
blob: 136346f87d372edf90fd6c2858440110868382b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
//>>built
define("dojox/mobile/RoundRectDataList", [
	"dojo/_base/declare",
	"./RoundRectList",
	"./_DataListMixin"
], function(declare, RoundRectList, DataListMixin){

/*=====
	var RoundRectList = dojox.mobile.RoundRectList;
	var DataListMixin = dojox.mobile._DataListMixin;
=====*/

	// module:
	//		dojox/mobile/RoundRectDataList
	// summary:
	//		An enhanced version of RoundRectList.

	return declare("dojox.mobile.RoundRectDataList", [RoundRectList, DataListMixin], {
		// summary:
		//		An enhanced version of RoundRectList.
		// description:
		//		RoundRectDataList is an enhanced version of RoundRectList. It
		//		can generate ListItems according to the given dojo.data store.
	});
});