comparison flys-client/src/main/java/de/intevation/flys/client/client/ui/WQAdaptedInputPanel.java @ 5635:cda844f8d126

WQAdaptedInputPanel: cosmetics in docs.
author Felix Wolfsteller <felix.wolfsteller@intevation.de>
date Wed, 03 Apr 2013 16:17:04 +0200
parents 6dbc111e9aec
children 4bd444837cdd
comparison
equal deleted inserted replaced
5634:b56422246f3a 5635:cda844f8d126
59 extends AbstractUIProvider 59 extends AbstractUIProvider
60 implements ChangeHandler, BlurHandler, FocusHandler 60 implements ChangeHandler, BlurHandler, FocusHandler
61 { 61 {
62 private static final long serialVersionUID = -3218827566805476423L; 62 private static final long serialVersionUID = -3218827566805476423L;
63 63
64 /** The message class that provides i18n strings.*/ 64 /** The message class that provides i18n strings. */
65 protected FLYSConstants MESSAGE = GWT.create(FLYSConstants.class); 65 protected FLYSConstants MESSAGE = GWT.create(FLYSConstants.class);
66 66
67 public static final String FIELD_WQ_MODE = "wq_isq"; 67 public static final String FIELD_WQ_MODE = "wq_isq";
68 public static final String FIELD_WQ_W = "W"; 68 public static final String FIELD_WQ_W = "W";
69 public static final String FIELD_WQ_Q = "Q"; 69 public static final String FIELD_WQ_Q = "Q";
74 74
75 public static final String VALUE_SEPARATOR = ","; 75 public static final String VALUE_SEPARATOR = ",";
76 76
77 public static final int ROW_HEIGHT = 20; 77 public static final int ROW_HEIGHT = 20;
78 78
79 /** The constant field name for choosing w or q mode.*/ 79 /** The constant field name for choosing w or q mode. */
80 public static final String FIELD_WQ = "wq"; 80 public static final String FIELD_WQ = "wq";
81 81
82 /** The constant field name for choosing single values or range.*/ 82 /** The constant field name for choosing single values or range. */
83 public static final String FIELD_MODE = "mode"; 83 public static final String FIELD_MODE = "mode";
84 84
85 /** The constant field value for range input mode.*/ 85 /** The constant field value for range input mode. */
86 public static final String FIELD_MODE_RANGE = "range"; 86 public static final String FIELD_MODE_RANGE = "range";
87 87
88 protected WQInfoServiceAsync wqInfoService = 88 protected WQInfoServiceAsync wqInfoService =
89 GWT.create(WQInfoService.class); 89 GWT.create(WQInfoService.class);
90 90
91 /** The message class that provides i18n strings.*/ 91 /** The message class that provides i18n strings. */
92 protected FLYSConstants MSG = GWT.create(FLYSConstants.class); 92 protected FLYSConstants MSG = GWT.create(FLYSConstants.class);
93 93
94 /** Stores the input panels related to their keys.*/ 94 /** Stores the input panels related to their keys. */
95 protected Map<String, DoubleArrayPanel> wqranges; 95 protected Map<String, DoubleArrayPanel> wqranges;
96 96
97 /** List of doubleArrayPanels shown. */ 97 /** List of doubleArrayPanels shown. */
98 protected ArrayList<DoubleArrayPanel> doubleArrayPanels; 98 protected ArrayList<DoubleArrayPanel> doubleArrayPanels;
99 99
100 /** Stores the min/max values for each q range.*/ 100 /** Stores the min/max values for each q range.*/
101 protected Map<String, double[]> qranges; 101 protected Map<String, double[]> qranges;
102 102
103 /** Stores the min/max values for each w range.*/ 103 /** Stores the min/max values for each w range. */
104 protected Map<String, double[]> wranges; 104 protected Map<String, double[]> wranges;
105 105
106 /** The RadioGroupItem that determines the w/q input mode.*/ 106 /** The RadioGroupItem that determines the w/q input mode. */
107 protected DynamicForm modes; 107 protected DynamicForm modes;
108 108
109 /** Table holding Q and D values. */ 109 /** Table holding Q and D values. */
110 protected QDTable qdTable; 110 protected QDTable qdTable;
111 111

http://dive4elements.wald.intevation.org