1 /** 2 * @author Gillis Haasnoot <gillis.haasnoot@gmail.com> 3 * @package Banana.Controls 4 * @summary Form 5 */ 6 7 goog.provide('Banana.Controls.Form'); 8 9 /** @namespace Banana.Controls.Form */ 10 namespace('Banana.Controls').Form = Banana.UiControl.extend({ 11 /** @lends Banana.Controls.Form.prototype */ 12 13 /** 14 * Creates form control 15 * @constructs 16 * @extends Banana.UiControl 17 */ 18 init : function() 19 { 20 this._super(); 21 }, 22 23 /** 24 * @ignore 25 */ 26 getTagName : function() 27 { 28 return 'form'; 29 } 30 });