-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlab-sit-2.tex
1626 lines (1536 loc) · 54.6 KB
/
lab-sit-2.tex
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
% Article - значит без глав, только секции
\documentclass{article}
\usepackage{lmodern}
% Задаем шрифты
\usepackage{fontspec}
\setmainfont[Scale=1.4]{Times New Roman} % Главный шрифт
\setmonofont[Scale=1.0]{Consolas} % Моноширинный шрифт
% Поддержка русского языка (переносов, орфографии)
\usepackage{polyglossia}
\usepackage{microtype} % better management of overfulls
\usepackage{ucharclasses}
\setmainlanguage{russian} % Ставим русский главным
\setotherlanguage{english} % Английский второстепенным
% Отступы по ГОСТу
\usepackage{geometry}
\geometry{
a4paper,
left=3cm,
top=2cm,
bottom=2cm,
right=1cm,
}
\usepackage{setspace}
\hyphenpenalty=1000 % default 50
\tolerance=500 % default 200
\setTransitionsForLatin{\begingroup\hyphenrules{english}}{\endgroup}
% Можно вставлять скрипты на Lua (компилить через lualatex)
%\usepackage{luacode}
% Example
% \begin{luacode}
% tex.print(math.random())
% \end{luacode}
\begin{hyphenrules}{russian}
\hyphenation{веб-фрейм-ворк}
\end{hyphenrules}
\usepackage{listings}
\lstset{
basicstyle=\ttfamily,
keywordstyle=\ttfamily,
stringstyle=\ttfamily,
commentstyle=\ttfamily,
breaklines=true,
keepspaces=true,
extendedchars=\true
}
\usepackage{python}
%%% ТИТУЛЬНИК %%%
%%%%%%%%%%%%%%%%%
\newcommand{\entityintro}[3]{%
\hbox to \hsize{%
\vbox{%
\hbox to .2in{}%
}%
{\bf #1}%
\dotfill\pageref{#2}%
}
\makebox[\hsize]{%
\parbox{.4in}{}%
\parbox[l]{5in}{%
\vspace{1mm}%
#3%
\vspace{1mm}%
}%
}%
}
\newcommand{\refdefined}[1]{
\expandafter\ifx\csname r@#1\endcsname\relax
\relax\else
{$($стр. \pageref{#1}$)$}\fi}
\begin{document}
% Отключаем нумерацию страниц
\pagenumbering{gobble}
\begin{center}
МИНИСТЕРСТВО ОБРАЗОВАНИЯ И НАУКИ РОССИЙСКОЙ ФЕДЕРАЦИИ
НОВОСИБИРСКИЙ ГОСУДАРСТВЕННЫЙ ТЕХНИЧЕСКИЙ УНИВЕРСИТЕТ
ФАКУЛЬТЕТ АВТОМАТИКИ И ВЫЧИСЛИТЕЛЬНОЙ ТЕХНИКИ
КАФЕДРА ВЫЧИСЛИТЕЛЬНОЙ ТЕХНИКИ
\vspace{\fill}
{\bfseries \Large Расчетно-графическая работа}
{\itshape по дисциплине <<Современные информационные технологии>>}
на тему <<Одностраничное Web-приложение>>
\vspace{\fill}
\begin{flushleft}
\begin{tabular}{ l l }
Студент & Кузьмин Д.С. \\
Группа & АВТ-318 \\
Преподаватель & Васюткина И.А. \\
\end{tabular}
\end{flushleft}
\vspace{\fill}
Новосибирск 2015 г.
\end{center}
\pagebreak
% Включаем нумерацию страниц
\pagenumbering{arabic}
%%% СЕКЦИИ %%%
%%%%%%%%%%%%%%
\tableofcontents
\pagebreak
\section{Цель работы}
\doublespacing
Разработать одностраничное веб-приложение с использованием веб-фрейворка Vaadin для отображения
информации о погоде в различных городах, курсе валют и кол-ве посещений страницы приложения
\section{Техническое задание}
\doublespacing
\begin{enumerate}
\item При создании приложения использоть веб-фрейворк Vaadin для создания интерфейса и взаимодействия между клиентом и сервером.
\item Реализовать получение и парсинг данных прогноза погоды на текущий и завтрашний день с сервиса ForecastIO
\item Реализовать получение и парсинг данных о курсах валют (доллар США, евро) с сайта ЦентроБанка России
\item Реализовать учет числа посещений страницы во время работы приложения (уникальные посетители, общее число посещений)
\item Добавить возможность обновлять данные из пунктов выше вручную по нажатию кнопки без перезагрузки страницы
\item Показывать IP-адрес пользователя, находящегося на странице
\item Показывать на странице время последнего обновления данных
\item Хранить информацию о посещениях из NoSQL БД Mongo
\end{enumerate}
\section{Проектирование}
\doublespacing
Была спрроектирована следующая структура классов:
\begin{figure}[h]
\centering
\includegraphics[width=\textwidth]{uml}
\caption{Диаграмма классов проекта}
\end{figure}
Краткое описание реализованных абстракций:
\begin{itemize}
\item Классы типа <<DataService>> работают непосредственно с источниками данных (база данных, сторонние сервисы). Результатом их работы является класс с полезной информацией типа <<Data>>
\item Классы типа <<Data>> содержат в себе информацию, необходимую и достаточную для ее отображения в графическом интерфейсе без дополнительных запросов к посторонним модулям.
\item Классы типа <<Updater>> реализуют функционал обновления графических компонентов, предобрабатывая и передавая информацию из классов типа <<Data>> этим компонентам.
\item Класс DashboardUI является корневым классом проекта. Он напрямую взаимодействует с фреймворком Vaadin - инициализирует интерфейс и является насленидком его класса шаблона. Этот класс имеет внутренний класс DashboardUIServlet, который является
наследником HttpServlet и привязывается к контейнеру сервлетов аннотацией фреймворка.
\end{itemize}
Привозникновении непредвиженных ситуаций, пользователю сообщается
об ошибке в сплывающей панели.
\section{Описание пользовательского интерфейса}
\doublespacing
\begin{figure}[h]
\centering
\includegraphics[width=\textwidth]{screenshot}
\caption{Скриншот приложения}
\label{fig:screen1}
\end{figure}
Представление информации на стороне клиента показано на рисунке \ref{fig:screen1}.
На странице расположены 3 панели
\begin{itemize}
\item На левой панели отображается информация о погоде. В выпадающем списке можно выбрать населенный пункт,
по которому будет загружаться информация. Доступно 3 населенных пункта - Москва, Санкт-Петербург и Новосибирск.
Чуть ниже выводится температура в градусах по Цельсию на сегодняшний и завтрашний календарные дни. При смене пункта в выпадающем списке для применения изменений необходимо кликнуть по кнопке <<Обновить>>.
\item На средней панели отображается информация о текущей валюте - эквивалент Американского доллара и Евро в Российских рублях под колонкой <<Курс>> и изменение этого значения с момента последнего обновления в Центральном Банке России (обычно 1-3 дней) под колонкой <<Изменение>>. Для обновления значений необходимо кликнуть по кнопке <<Обновить>> внизу панели.
\item На правой панели отображается счеткик посещений данной страницы. Под колонкой <<Уникальных>> отображено число уникальных посетителей, загрузивших данную страницу. Под колонкой <<Всего>> отображается общее количество посещений этой страницы.
\end{itemize}
В правом нижнем углу отображается текущий IP-адрес пользователя, загрузившего текущую страницу.
В левом нижнем углу отображается время последнего обновления любой из 2х панелей - о погоде либо о курсе валют. Либо с момента последеней перезагрузки страницы.
\section{Структурное описание разработки}
\subsection*{Пакет com.xotonic.dashboard.weather}{
\label{com.xotonic.dashboard.weather}\hskip -.05in
\hbox to \hsize{\textit{ Структура\hfil Стр.}}
\vskip .13in
\hbox{{\bf Интерфейсы}}
\entityintro{WeatherDataService}{com.xotonic.dashboard.weather.WeatherDataService}{Интерфейс для взаимодействия с \texttt{ DashboardUI}{
\refdefined{com.xotonic.dashboard.ui.DashboardUI}}}
\vskip .13in
\hbox{{\bf Классы}}
\entityintro{Cities}{com.xotonic.dashboard.weather.Cities}{Список городов}
\entityintro{FIODataService}{com.xotonic.dashboard.weather.FIODataService}{Загрузчик прогноза погоды с forecast.io.}
\entityintro{WeatherData}{com.xotonic.dashboard.weather.WeatherData}{Класс для передачи информации от загрузчиков погодных информеров (\texttt{ WeatherDataService}{
\refdefined{com.xotonic.dashboard.weather.WeatherDataService}})}
\vskip .1in
\vskip .1in
\subsubsection*{\label{com.xotonic.dashboard.weather.WeatherDataService}Интерфейс WeatherDataService}{
\vskip .1in
Интерфейс для взаимодействия с \texttt{ DashboardUI}{
\refdefined{com.xotonic.dashboard.ui.DashboardUI}}\vskip .1in
\subsubsection*{Объявление}{
\begin{lstlisting}[frame=none]
public interface WeatherDataService
\end{lstlisting}
\subsubsection*{Реализуют}{FIODataService{\refdefined{com.xotonic.dashboard.weather.FIODataService}}}
\subsubsection*{Методы}{
\vskip -2em
\begin{itemize}
\item{
\index{getData(Cities)}
{\bf getData}\\
\begin{lstlisting}[frame=none]
WeatherData getData(Cities city) throws com.xotonic.dashboard.ExceptionForUser\end{lstlisting} %end signature
\begin{itemize}
\item{
{\bf Параметры}
\begin{itemize}
\item{
\texttt{city} -- Запрашиваемый город}
\end{itemize}
}%end item
\item{{\bf Возвращемое значение} --
Информация по этому городу
}%end item
\item{{\bf Выбрасывает исключение}
\begin{itemize}
\item{\vskip -.6ex \texttt{com.xotonic.dashboard.ExceptionForUser} -- }
\end{itemize}
}%end item
\end{itemize}
}%end item
\end{itemize}
}
}
\subsubsection*{\label{com.xotonic.dashboard.weather.Cities}Класс Cities}{
\vskip .1in
Список городов\vskip .1in
\subsubsection*{Объявление}{
\begin{lstlisting}[frame=none]
public final Класс Cities
extends java.lang.Enum\end{lstlisting}
\subsubsection*{Поля}{
\begin{itemize}
\item{
\index{MSK}
\label{com.xotonic.dashboard.weather.Cities.MSK}\texttt{public static final Cities\ {\bf MSK}}
\begin{itemize}
\item{\vskip -.9ex
Москва}
\end{itemize}
}
\item{
\index{SPB}
\label{com.xotonic.dashboard.weather.Cities.SPB}\texttt{public static final Cities\ {\bf SPB}}
\begin{itemize}
\item{\vskip -.9ex
Санкт-Петебург}
\end{itemize}
}
\item{
\index{NSK}
\label{com.xotonic.dashboard.weather.Cities.NSK}\texttt{public static final Cities\ {\bf NSK}}
\begin{itemize}
\item{\vskip -.9ex
Новосибирск}
\end{itemize}
}
\end{itemize}
}
\subsubsection*{Конструкторы}{
\vskip -2em
\begin{itemize}
\item{
\index{Cities()}
{\bf Cities}\\
\begin{lstlisting}[frame=none]
private Cities()\end{lstlisting} %end signature
}%end item
\end{itemize}
}
\subsubsection*{Методы}{
\vskip -2em
\begin{itemize}
\item{
\index{byID(int)}
{\bf byID}\\
\begin{lstlisting}[frame=none]
public static Cities byID(int id)\end{lstlisting} %end signature
\begin{itemize}
\item{
{\bf Описание}
Вернуть город по порядковому номеру в списке
}
\item{
{\bf Параметры}
\begin{itemize}
\item{
\texttt{id} -- номер в списке}
\end{itemize}
}%end item
\item{{\bf Возвращемое значение} --
}%end item
\end{itemize}
}%end item
\item{
\index{valueOf(String)}
{\bf valueOf}\\
\begin{lstlisting}[frame=none]
public static Cities valueOf(java.lang.String name)\end{lstlisting} %end signature
}%end item
\item{
\index{values()}
{\bf values}\\
\begin{lstlisting}[frame=none]
public static Cities[] values()\end{lstlisting} %end signature
}%end item
\end{itemize}
}
}
\subsubsection*{\label{com.xotonic.dashboard.weather.FIODataService}Класс FIODataService}{
\vskip .1in
Загрузчик прогноза погоды с forecast.io.\mbox{}\newline Следует помнить, что сервис предоставляет ограниченноое количество запросов (всего 1000 единовременно)\vskip .1in
\subsubsection*{Объявление}{
\begin{lstlisting}[frame=none]
public class FIODataService
extends java.lang.Object implements WeatherDataService\end{lstlisting}
\subsubsection*{Поля}{
\begin{itemize}
\item{
\index{APPKEY}
\label{com.xotonic.dashboard.weather.FIODataService.APPKEY}\texttt{private static final java.lang.String\ {\bf APPKEY}}
\begin{itemize}
\item{\vskip -.9ex
Бесплатный APIKEY (ключ разработчика)}
\end{itemize}
}
\item{
\index{lats}
\label{com.xotonic.dashboard.weather.FIODataService.lats}\texttt{private static final java.lang.String\lbrack \rbrack \ {\bf lats}}
\begin{itemize}
\item{\vskip -.9ex
Широты городов}
\end{itemize}
}
\item{
\index{lons}
\label{com.xotonic.dashboard.weather.FIODataService.lons}\texttt{private static final java.lang.String\lbrack \rbrack \ {\bf lons}}
\begin{itemize}
\item{\vskip -.9ex
Долготы городов}
\end{itemize}
}
\end{itemize}
}
\subsubsection*{Конструкторы}{
\vskip -2em
\begin{itemize}
\item{
\index{FIODataService()}
{\bf FIODataService}\\
\begin{lstlisting}[frame=none]
public FIODataService()\end{lstlisting} %end signature
}%end item
\end{itemize}
}
\subsubsection*{Методы}{
\vskip -2em
\begin{itemize}
\item{
\index{getData(Cities)}
{\bf getData}\\
\begin{lstlisting}[frame=none]
public WeatherData getData(Cities city) throws com.xotonic.dashboard.ExceptionForUser\end{lstlisting} %end signature
\begin{itemize}
\item{
{\bf Описание}
Получить информацию о погоде в конкретном городе
}
\item{
{\bf Параметры}
\begin{itemize}
\item{
\texttt{city} -- Запрашиваемый город}
\end{itemize}
}%end item
\item{{\bf Возвращемое значение} --
}%end item
\item{{\bf Выбрасывает исключение}
\begin{itemize}
\item{\vskip -.6ex \texttt{com.xotonic.dashboard.ExceptionForUser} -- }
\end{itemize}
}%end item
\end{itemize}
}%end item
\end{itemize}
}
}
\subsubsection*{\label{com.xotonic.dashboard.weather.WeatherData}Класс WeatherData}{
\vskip .1in
Класс для передачи информации от загрузчиков погодных информеров (\texttt{ WeatherDataService}{
\refdefined{com.xotonic.dashboard.weather.WeatherDataService}})\vskip .1in
\subsubsection*{Объявление}{
\begin{lstlisting}[frame=none]
public class WeatherData
extends java.lang.Object\end{lstlisting}
\subsubsection*{Поля}{
\begin{itemize}
\item{
\index{celcium\_today}
\label{com.xotonic.dashboard.weather.WeatherData.celcium_today}\texttt{public float\ {\bf celcium\_today}}
\begin{itemize}
\item{\vskip -.9ex
Значение температуры за сегодня в градусах по Цельсию}
\end{itemize}
}
\item{
\index{celcium\_tomorrow}
\label{com.xotonic.dashboard.weather.WeatherData.celcium_tomorrow}\texttt{public float\ {\bf celcium\_tomorrow}}
\begin{itemize}
\item{\vskip -.9ex
Значение температуры на завтра в градусах по Цельсию}
\end{itemize}
}
\item{
\index{city}
\label{com.xotonic.dashboard.weather.WeatherData.city}\texttt{public Cities\ {\bf city}}
\begin{itemize}
\item{\vskip -.9ex
Город, для которого предназначен прогноз}
\end{itemize}
}
\end{itemize}
}
\subsubsection*{Конструкторы}{
\vskip -2em
\begin{itemize}
\item{
\index{WeatherData()}
{\bf WeatherData}\\
\begin{lstlisting}[frame=none]
public WeatherData()\end{lstlisting} %end signature
}%end item
\end{itemize}
}
}
}
\subsection*{Пакет com.xotonic.dashboard.currency}{
\label{com.xotonic.dashboard.currency}\hskip -.05in
\hbox to \hsize{\textit{ Структура\hfil Стр.}}
\vskip .13in
\hbox{{\bf Интерфейсы}}
\entityintro{CurrencyDataService}{com.xotonic.dashboard.currency.CurrencyDataService}{Интерфейс для службы получения курса валют}
\vskip .13in
\hbox{{\bf Классы}}
\entityintro{CBRDataService}{com.xotonic.dashboard.currency.CBRDataService}{Парсинг курса валют с сайта Центрального Банка России}
\entityintro{CurrencyData}{com.xotonic.dashboard.currency.CurrencyData}{Класс, содержащий информацию о курсе валют}
\vskip .1in
\vskip .1in
\subsubsection*{\label{com.xotonic.dashboard.currency.CurrencyDataService}Интерфейс CurrencyDataService}{
\vskip .1in
Интерфейс для службы получения курса валют\vskip .1in
\subsubsection*{Объявление}{
\begin{lstlisting}[frame=none]
public interface CurrencyDataService
\end{lstlisting}
\subsubsection*{Реализуют}{CBRDataService{\refdefined{com.xotonic.dashboard.currency.CBRDataService}}}
\subsubsection*{Методы}{
\vskip -2em
\begin{itemize}
\item{
\index{getData()}
{\bf getData}\\
\begin{lstlisting}[frame=none]
CurrencyData getData() throws com.xotonic.dashboard.ExceptionForUser\end{lstlisting} %end signature
}%end item
\end{itemize}
}
}
\subsubsection*{\label{com.xotonic.dashboard.currency.CBRDataService}Класс CBRDataService}{
\vskip .1in
Парсинг курса валют с сайта Центрального Банка России\vskip .1in
\subsubsection*{Объявление}{
\begin{lstlisting}[frame=none]
public class CBRDataService
extends java.lang.Object implements CurrencyDataService\end{lstlisting}
\subsubsection*{Поля}{
\begin{itemize}
\item{
\index{ID\_USD}
\label{com.xotonic.dashboard.currency.CBRDataService.ID_USD}\texttt{private final java.lang.String\ {\bf ID\_USD}}
\begin{itemize}
\item{\vskip -.9ex
Уникальный код Американского доллара в XML}
\end{itemize}
}
\item{
\index{ID\_EUR}
\label{com.xotonic.dashboard.currency.CBRDataService.ID_EUR}\texttt{private final java.lang.String\ {\bf ID\_EUR}}
\begin{itemize}
\item{\vskip -.9ex
Уникальный код Евро в XML}
\end{itemize}
}
\item{
\index{URL}
\label{com.xotonic.dashboard.currency.CBRDataService.URL}\texttt{private final java.lang.String\ {\bf URL}}
\begin{itemize}
\item{\vskip -.9ex
URL запроса к Центробанку}
\end{itemize}
}
\end{itemize}
}
\subsubsection*{Конструкторы}{
\vskip -2em
\begin{itemize}
\item{
\index{CBRDataService()}
{\bf CBRDataService}\\
\begin{lstlisting}[frame=none]
public CBRDataService()\end{lstlisting} %end signature
}%end item
\end{itemize}
}
\subsubsection*{Методы}{
\vskip -2em
\begin{itemize}
\item{
\index{buildUrl(Date, Date, String)}
{\bf buildUrl}\\
\begin{lstlisting}[frame=none]
private java.lang.String buildUrl(java.util.Date from,java.util.Date to,java.lang.String id)\end{lstlisting} %end signature
\begin{itemize}
\item{
{\bf Описание}
Вставить в URL параметры запроса
}
\item{
{\bf Параметры}
\begin{itemize}
\item{
\texttt{from} -- Начальная дата}
\item{
\texttt{to} -- Конечная дата}
\item{
\texttt{id} -- Идентификатор валюты}
\end{itemize}
}%end item
\item{{\bf Возвращемое значение} --
Готовый URL для отправки на сервер ЦБ
}%end item
\end{itemize}
}%end item
\item{
\index{getData()}
{\bf getData}\\
\begin{lstlisting}[frame=none]
public CurrencyData getData() throws com.xotonic.dashboard.ExceptionForUser\end{lstlisting} %end signature
\begin{itemize}
\item{
{\bf Описание}
Выполнить запрос на сайт Центробанка по обеим валютам
}
\item{{\bf Возвращемое значение} --
Информация о валюте
}%end item
\item{{\bf Выбрасывает исключение}
\begin{itemize}
\item{\vskip -.6ex \texttt{com.xotonic.dashboard.ExceptionForUser} -- }
\end{itemize}
}%end item
\end{itemize}
}%end item
\item{
\index{setLastWorkingDay(Calendar)}
{\bf setLastWorkingDay}\\
\begin{lstlisting}[frame=none]
private void setLastWorkingDay(java.util.Calendar cal)\end{lstlisting} %end signature
\begin{itemize}
\item{
{\bf Описание}
Найти последний рабочий день в ЦБ
}
\item{
{\bf Параметры}
\begin{itemize}
\item{
\texttt{cal} -- }
\end{itemize}
}%end item
\end{itemize}
}%end item
\end{itemize}
}
}
\subsubsection*{\label{com.xotonic.dashboard.currency.CurrencyData}Класс CurrencyData}{
\vskip .1in
Класс, содержащий информацию о курсе валют\vskip .1in
\subsubsection*{Объявление}{
\begin{lstlisting}[frame=none]
public class CurrencyData
extends java.lang.Object\end{lstlisting}
\subsubsection*{Поля}{
\begin{itemize}
\item{
\index{EUR}
\label{com.xotonic.dashboard.currency.CurrencyData.EUR}\texttt{public float\ {\bf EUR}}
\begin{itemize}
\item{\vskip -.9ex
Курс евро по отношению к рублю}
\end{itemize}
}
\item{
\index{EURDelta}
\label{com.xotonic.dashboard.currency.CurrencyData.EURDelta}\texttt{public float\ {\bf EURDelta}}
\begin{itemize}
\item{\vskip -.9ex
Изменение евро}
\end{itemize}
}
\item{
\index{USD}
\label{com.xotonic.dashboard.currency.CurrencyData.USD}\texttt{public float\ {\bf USD}}
\begin{itemize}
\item{\vskip -.9ex
Курс доллара по отношению к рублю}
\end{itemize}
}
\item{
\index{USDDelta}
\label{com.xotonic.dashboard.currency.CurrencyData.USDDelta}\texttt{public float\ {\bf USDDelta}}
\begin{itemize}
\item{\vskip -.9ex
Изменение доллара}
\end{itemize}
}
\end{itemize}
}
\subsubsection*{Конструкторы}{
\vskip -2em
\begin{itemize}
\item{
\index{CurrencyData()}
{\bf CurrencyData}\\
\begin{lstlisting}[frame=none]
public CurrencyData()\end{lstlisting} %end signature
}%end item
\end{itemize}
}
}
}
\subsection*{Пакет com.xotonic.dashboard.ui}{
\label{com.xotonic.dashboard.ui}\hskip -.05in
\hbox to \hsize{\textit{ Структура\hfil Стр.}}
\vskip .13in
\hbox{{\bf Классы}}
\entityintro{CurrencyUpdater}{com.xotonic.dashboard.ui.CurrencyUpdater}{Обновление курса валют\mbox{}\newline }
\entityintro{DashboardUI}{com.xotonic.dashboard.ui.DashboardUI}{Отрисовка UI и управление событиями}
\entityintro{DashboardUI.DashboardUIServlet}{com.xotonic.dashboard.ui.DashboardUI.DashboardUIServlet}{Сервлет приложения}
\entityintro{VisitorsUpdater}{com.xotonic.dashboard.ui.VisitorsUpdater}{Обновление счетчика посещения\mbox{}\newline }
\entityintro{WeatherUpdater}{com.xotonic.dashboard.ui.WeatherUpdater}{Обновление прогноза погоды\mbox{}\newline }
\vskip .1in
\vskip .1in
\subsubsection*{\label{com.xotonic.dashboard.ui.CurrencyUpdater}Класс CurrencyUpdater}{
\vskip .1in
Обновление курса валют\mbox{}\newline \vskip .1in
\subsubsection*{Объявление}{
\begin{lstlisting}[frame=none]
public class CurrencyUpdater
extends java.lang.Object implements com.vaadin.ui.Button.ClickListener, java.lang.Runnable\end{lstlisting}
\subsubsection*{Поля}{
\begin{itemize}
\item{
\index{usdLabel}
\label{com.xotonic.dashboard.ui.CurrencyUpdater.usdLabel}\texttt{private final com.vaadin.ui.Label\ {\bf usdLabel}}
\begin{itemize}
\item{\vskip -.9ex
Надпись для значения текущего курса доллара}
\end{itemize}
}
\item{
\index{usdDeltaLabel}
\label{com.xotonic.dashboard.ui.CurrencyUpdater.usdDeltaLabel}\texttt{private final com.vaadin.ui.Label\ {\bf usdDeltaLabel}}
\begin{itemize}
\item{\vskip -.9ex
Надпись для значения изменения текущего курса доллара}
\end{itemize}
}
\item{
\index{eurLabel}
\label{com.xotonic.dashboard.ui.CurrencyUpdater.eurLabel}\texttt{private final com.vaadin.ui.Label\ {\bf eurLabel}}
\begin{itemize}
\item{\vskip -.9ex
Надпись для значения текущего курса евро}
\end{itemize}
}
\item{
\index{eurDeltaLabel}
\label{com.xotonic.dashboard.ui.CurrencyUpdater.eurDeltaLabel}\texttt{private final com.vaadin.ui.Label\ {\bf eurDeltaLabel}}
\begin{itemize}
\item{\vskip -.9ex
Надпись для значения изменения текущего курса евро}
\end{itemize}
}
\item{
\index{silent}
\label{com.xotonic.dashboard.ui.CurrencyUpdater.silent}\texttt{private boolean\ {\bf silent}}
\begin{itemize}
\item{\vskip -.9ex
Метка, отключающая вывод сообщения пользователю об успешном обновлении}
\end{itemize}
}
\item{
\index{timeStatusValueLabel}
\label{com.xotonic.dashboard.ui.CurrencyUpdater.timeStatusValueLabel}\texttt{private final com.vaadin.ui.Label\ {\bf timeStatusValueLabel}}
\begin{itemize}
\item{\vskip -.9ex
Надпись с временем последнего обновления}
\end{itemize}
}
\item{
\index{currencyFormat}
\label{com.xotonic.dashboard.ui.CurrencyUpdater.currencyFormat}\texttt{private final java.text.DecimalFormat\ {\bf currencyFormat}}
\begin{itemize}
\item{\vskip -.9ex
Форматирование для строк с числовыми значениями курса}
\end{itemize}
}
\item{
\index{currencyDeltaFormat}
\label{com.xotonic.dashboard.ui.CurrencyUpdater.currencyDeltaFormat}\texttt{private final java.text.DecimalFormat\ {\bf currencyDeltaFormat}}
\begin{itemize}
\item{\vskip -.9ex
Форматирование для строк с числовыми значениями изменения курса}
\end{itemize}
}
\item{
\index{currencyData}
\label{com.xotonic.dashboard.ui.CurrencyUpdater.currencyData}\texttt{private com.xotonic.dashboard.currency.CurrencyData\ {\bf currencyData}}
\begin{itemize}
\item{\vskip -.9ex
Информация о текущем курсе}
\end{itemize}
}
\end{itemize}
}
\subsubsection*{Конструкторы}{
\vskip -2em
\begin{itemize}
\item{
\index{CurrencyUpdater(Label, Label, Label, Label, Label)}
{\bf CurrencyUpdater}\\
\begin{lstlisting}[frame=none]
public CurrencyUpdater(com.vaadin.ui.Label usdLabel,com.vaadin.ui.Label usdDeltaLabel,com.vaadin.ui.Label eurLabel,com.vaadin.ui.Label eurDeltaLabel,com.vaadin.ui.Label timeStatusValueLabel)\end{lstlisting} %end signature
\begin{itemize}
\item{
{\bf Описание}
Конструктор
}
\item{
{\bf Параметры}
\begin{itemize}
\item{
\texttt{usdLabel} -- курс доллара}
\item{
\texttt{usdDeltaLabel} -- изменение курса доллара}
\item{
\texttt{eurLabel} -- курс евро}
\item{
\texttt{eurDeltaLabel} -- изменение курса евро}
\item{
\texttt{timeStatusValueLabel} -- дата и время, которое обновится после получения новых данных}
\end{itemize}
}%end item
\end{itemize}
}%end item
\end{itemize}
}
\subsubsection*{Методы}{
\vskip -2em
\begin{itemize}
\item{
\index{buttonClick(Button.ClickEvent)}
{\bf buttonClick}\\
\begin{lstlisting}[frame=none]
public void buttonClick(com.vaadin.ui.Button.ClickEvent event)\end{lstlisting} %end signature
\begin{itemize}
\item{
{\bf Описание}
Обработчик клика по кнопке 'Обновить'
}
\item{
{\bf Параметры}
\begin{itemize}
\item{
\texttt{event} -- }
\end{itemize}
}%end item
\end{itemize}
}%end item
\item{
\index{isSilent()}
{\bf isSilent}\\
\begin{lstlisting}[frame=none]
public boolean isSilent()\end{lstlisting} %end signature
\begin{itemize}
\item{
{\bf Описание}
Вернуть флаг, включающий оповещение пользователя об успешном обновлении
}
\end{itemize}
}%end item
\item{
\index{run()}
{\bf run}\\
\begin{lstlisting}[frame=none]
public void run()\end{lstlisting} %end signature
\begin{itemize}
\item{
{\bf Описание}
Эмуляция нажатия на кнопку обновления при запуске класса как Runnable
}
\end{itemize}
}%end item
\item{
\index{setSilent(boolean)}
{\bf setSilent}\\
\begin{lstlisting}[frame=none]
public void setSilent(boolean silent)\end{lstlisting} %end signature
\begin{itemize}
\item{
{\bf Описание}
Поставить флаг, включающий оповещение пользователя об успешном обновлении
}
\end{itemize}
}%end item
\item{
\index{updateCurrency()}
{\bf updateCurrency}\\
\begin{lstlisting}[frame=none]
private void updateCurrency()\end{lstlisting} %end signature
\begin{itemize}
\item{
{\bf Описание}
Обновить информацию о курсе валют
}
\end{itemize}
}%end item
\item{
\index{updateDateLabel()}
{\bf updateDateLabel}\\
\begin{lstlisting}[frame=none]
private void updateDateLabel()\end{lstlisting} %end signature
\begin{itemize}
\item{
{\bf Описание}
Обновить текст с временем последнего обновления
}
\end{itemize}
}%end item
\end{itemize}
}
}
\subsubsection*{\label{com.xotonic.dashboard.ui.DashboardUI}Класс DashboardUI}{
\vskip .1in
Отрисовка UI и управление событиями\vskip .1in
\subsubsection*{Объявление}{
\begin{lstlisting}[frame=none]
public class DashboardUI
extends com.vaadin.ui.UI\end{lstlisting}
\subsubsection*{Поля}{
\begin{itemize}
\item{
\index{weatherUpdater}
\label{com.xotonic.dashboard.ui.DashboardUI.weatherUpdater}\texttt{ WeatherUpdater\ {\bf weatherUpdater}}
\begin{itemize}
\item{\vskip -.9ex
Компонент для обновления погоды}
\end{itemize}
}
\item{
\index{currencyUpdater}
\label{com.xotonic.dashboard.ui.DashboardUI.currencyUpdater}\texttt{ CurrencyUpdater\ {\bf currencyUpdater}}
\begin{itemize}
\item{\vskip -.9ex
Компонент для обновления курса валют}
\end{itemize}
}
\item{
\index{visitorsUpdater}
\label{com.xotonic.dashboard.ui.DashboardUI.visitorsUpdater}\texttt{ VisitorsUpdater\ {\bf visitorsUpdater}}
\begin{itemize}
\item{\vskip -.9ex
Компонент для обновления количества посещений}
\end{itemize}
}
\end{itemize}
}
\subsubsection*{Конструкторы}{
\vskip -2em
\begin{itemize}
\item{
\index{DashboardUI()}
{\bf DashboardUI}\\
\begin{lstlisting}[frame=none]
public DashboardUI()\end{lstlisting} %end signature
}%end item
\end{itemize}
}
\subsubsection*{Методы}{
\vskip -2em
\begin{itemize}
\item{
\index{init(VaadinRequest)}
{\bf init}\\
\begin{lstlisting}[frame=none]
protected void init(com.vaadin.server.VaadinRequest vaadinRequest)\end{lstlisting} %end signature
\begin{itemize}
\item{
{\bf Описание}
Инициализация приложения
}
\item{
{\bf Параметры}
\begin{itemize}
\item{
\texttt{vaadinRequest} -- обьект класса-обертки HttpRequest}
\end{itemize}
}%end item
\end{itemize}
}%end item
\end{itemize}
}
}
\subsubsection*{\label{com.xotonic.dashboard.ui.DashboardUI.DashboardUIServlet}Класс DashboardUI.DashboardUIServlet}{
\vskip .1in
Сервлет приложения\vskip .1in
\subsubsection*{Объявление}{
\begin{lstlisting}[frame=none]
public static Класс DashboardUI.DashboardUIServlet
extends com.vaadin.server.VaadinServlet\end{lstlisting}
\subsubsection*{Конструкторы}{
\vskip -2em
\begin{itemize}
\item{
\index{DashboardUIServlet()}
{\bf DashboardUIServlet}\\
\begin{lstlisting}[frame=none]
public DashboardUIServlet()\end{lstlisting} %end signature
}%end item
\end{itemize}
}
}
\subsubsection*{\label{com.xotonic.dashboard.ui.VisitorsUpdater}Класс VisitorsUpdater}{
\vskip .1in
Обновление счетчика посещения\mbox{}\newline \vskip .1in
\subsubsection*{Объявление}{
\begin{lstlisting}[frame=none]
public class VisitorsUpdater
extends java.lang.Object implements com.vaadin.ui.Button.ClickListener, java.lang.Runnable\end{lstlisting}
\subsubsection*{Поля}{
\begin{itemize}
\item{
\index{uniqueLabel}
\label{com.xotonic.dashboard.ui.VisitorsUpdater.uniqueLabel}\texttt{private final com.vaadin.ui.Label\ {\bf uniqueLabel}}