changeset 892:777bf66dbb11

even more jsduck... for widgets this time
author Dustin Demuth <dustin@intevation.de>
date Thu, 23 Jul 2015 16:56:58 +0200
parents 8054232535ba
children 07dfcdf5b41f
files app/view/widget/MapToolbar.js app/view/widget/base/CheckBox.js app/view/widget/base/ComboBox.js app/view/widget/base/DateField.js app/view/widget/base/DateTimeField.js app/view/widget/base/DateTimePicker.js app/view/widget/base/FieldSet.js app/view/widget/base/TextField.js
diffstat 8 files changed, 42 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/app/view/widget/MapToolbar.js	Thu Jul 23 16:47:48 2015 +0200
+++ b/app/view/widget/MapToolbar.js	Thu Jul 23 16:56:58 2015 +0200
@@ -6,6 +6,9 @@
  * the documentation coming with IMIS-Labordaten-Application for details.
  */
 
+/**
+ * This is a Toolbar for the Map.
+ */
 Ext.define('Lada.view.widget.MapToolbar', {
     extend: 'Ext.toolbar.Toolbar',
     alias: 'widget.maptoolbar',
--- a/app/view/widget/base/CheckBox.js	Thu Jul 23 16:47:48 2015 +0200
+++ b/app/view/widget/base/CheckBox.js	Thu Jul 23 16:56:58 2015 +0200
@@ -6,6 +6,9 @@
  * the documentation coming with IMIS-Labordaten-Application for details.
  */
 
+/**
+ * This Widget extends a Panel to create a custom Checkbox
+ */
 Ext.define('Lada.view.widget.base.CheckBox', {
     extend: 'Ext.form.Panel',
     alias: 'widget.chkbox',
--- a/app/view/widget/base/ComboBox.js	Thu Jul 23 16:47:48 2015 +0200
+++ b/app/view/widget/base/ComboBox.js	Thu Jul 23 16:56:58 2015 +0200
@@ -6,6 +6,9 @@
  * the documentation coming with IMIS-Labordaten-Application for details.
  */
 
+/**
+ * This Widget extends a Panel to creat a custom Combobox
+ */
 Ext.define('Lada.view.widget.base.ComboBox', {
     extend: 'Ext.form.Panel',
     alias: 'widget.cbox',
--- a/app/view/widget/base/DateField.js	Thu Jul 23 16:47:48 2015 +0200
+++ b/app/view/widget/base/DateField.js	Thu Jul 23 16:56:58 2015 +0200
@@ -6,6 +6,9 @@
  * the documentation coming with IMIS-Labordaten-Application for details.
  */
 
+/**
+ * This Widget extends a Panel in order to create a custom Datefield
+ */
 Ext.define('Lada.view.widget.base.DateField', {
     extend: 'Ext.form.Panel',
     alias: 'widget.datef',
--- a/app/view/widget/base/DateTimeField.js	Thu Jul 23 16:47:48 2015 +0200
+++ b/app/view/widget/base/DateTimeField.js	Thu Jul 23 16:56:58 2015 +0200
@@ -1,3 +1,15 @@
+/* Copyright (C) 2013 by Bundesamt fuer Strahlenschutz
+ * Software engineering by Intevation GmbH
+ *
+ * This file is Free Software under the GNU GPL (v>=3)
+ * and comes with ABSOLUTELY NO WARRANTY! Check out
+ * the documentation coming with IMIS-Labordaten-Application for details.
+ */
+
+/**
+ * This Widget extends a Datefield in order to create a
+ * something like a DateTimePicker
+ */
 Ext.define('Lada.view.widget.base.DateTimeField', {
     extend: 'Ext.form.field.Date',
     alias: 'widget.datetimefield',
--- a/app/view/widget/base/DateTimePicker.js	Thu Jul 23 16:47:48 2015 +0200
+++ b/app/view/widget/base/DateTimePicker.js	Thu Jul 23 16:56:58 2015 +0200
@@ -1,3 +1,15 @@
+/* Copyright (C) 2013 by Bundesamt fuer Strahlenschutz
+ * Software engineering by Intevation GmbH
+ *
+ * This file is Free Software under the GNU GPL (v>=3)
+ * and comes with ABSOLUTELY NO WARRANTY! Check out
+ * the documentation coming with IMIS-Labordaten-Application for details.
+ */
+
+/**
+ * This Widget extends a DateTimePicker in order to create a
+ * something like a DateTimePicker
+ */
 Ext.define('Lada.view.widget.base.DateTimePicker', {
     extend: 'Ext.picker.Date',
     alias: 'widget.datetimepicker',
--- a/app/view/widget/base/FieldSet.js	Thu Jul 23 16:47:48 2015 +0200
+++ b/app/view/widget/base/FieldSet.js	Thu Jul 23 16:56:58 2015 +0200
@@ -6,6 +6,9 @@
  * the documentation coming with IMIS-Labordaten-Application for details.
  */
 
+/**
+ * This Widget extends a Fieldset
+ */
 Ext.define('Lada.view.widget.base.FieldSet', {
     extend: 'Ext.form.FieldSet',
     alias: 'widget.fset',
--- a/app/view/widget/base/TextField.js	Thu Jul 23 16:47:48 2015 +0200
+++ b/app/view/widget/base/TextField.js	Thu Jul 23 16:56:58 2015 +0200
@@ -6,6 +6,9 @@
  * the documentation coming with IMIS-Labordaten-Application for details.
  */
 
+/**
+ * This Widget extends a Panel to create a Textfield
+ */
 Ext.define('Lada.view.widget.base.TextField', {
     extend: 'Ext.panel.Panel',
     alias: 'widget.tfield',

http://lada.wald.intevation.org