1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20 package com.cosylab.gui.components;
21
22 public class SimpleTimeSelectorCustomizer extends
23 AbstractDisplayerPanelCustomizer {
24
25 private static final long serialVersionUID = 1L;
26
27
28 public static final String TIME_ZONE="timeZone";
29
30 public static final String HOUR ="hour";
31
32 public static final String MINUTE="minute";
33
34 public static final String SECONDS="seconds";
35
36 public static final String TIME="time";
37
38 public static final String HOUR_STATUS="hourStatus";
39
40 public static final String LABELS_EDIT ="Other";
41
42 public static String[] ASPECTS = {VISUAL_BASIC , LABELS_EDIT};
43
44 public static final String[] VISUAL_BASIC_PROPERTIES = {
45 TIME,HOUR,MINUTE,SECONDS,TIME_ZONE
46
47 };
48
49 public static final String[] LABELS_EDIT_GROUP={HOUR_STATUS};
50
51 public SimpleTimeSelectorCustomizer(){
52 addCustomizerTable(LABELS_EDIT, LABELS_EDIT_GROUP);
53 addCustomizerTable(VISUAL_BASIC, VISUAL_BASIC_PROPERTIES);
54 setSize(303, 185);
55 }
56
57 }