Project

General

Profile

1
/*
2
Author:       Steven M. Ottens
3
License:      LGPL as per: http://www.gnu.org/copyleft/lesser.html
4

    
5
$Id: ExampleList.js 1671 2005-09-20 02:37:54Z madair1 $
6
*/
7
// Ensure this object's dependancies are loaded.
8
mapbuilder.loadScript(baseDir+"/widget/WidgetBaseXSL.js");
9

    
10
/**
11
 * Render a list of the examples
12
 * @constructor
13
 * @base WidgetBaseXSL
14
 * @author Steven M. Ottens
15
 * @param widgetNode  The widget's XML object node from the configuration document.
16
 * @param model       The model object that this widget belongs to.
17
 */
18
function ExampleList(widgetNode, model) {
19
  WidgetBaseXSL.apply(this,new Array(widgetNode, model));
20
}
(1-1/3)