File tree Expand file tree Collapse file tree
epics-vtype/vtype/src/main/java/org/epics/vtype Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- /**
2- * Copyright information and license terms for this software can be
3- * found in the file LICENSE.TXT included with the distribution.
4- */
5- package org .epics .vtype ;
6-
7- /**
8- * A value that provides an alarm.
9- *
10- * @author carcassi
11- */
12- interface AlarmProvider {
13-
14- /**
15- * The alarm associated with this value.
16- *
17- * @return the alarm; not null
18- */
19- public Alarm getAlarm ();
20- }
1+ /**
2+ * Copyright information and license terms for this software can be
3+ * found in the file LICENSE.TXT included with the distribution.
4+ */
5+ package org .epics .vtype ;
6+
7+ /**
8+ * A value that provides an alarm.
9+ *
10+ * @author carcassi
11+ */
12+ public interface AlarmProvider {
13+
14+ /**
15+ * The alarm associated with this value.
16+ *
17+ * @return the alarm; not null
18+ */
19+ public Alarm getAlarm ();
20+ }
Original file line number Diff line number Diff line change 1- /**
2- * Copyright information and license terms for this software can be
3- * found in the file LICENSE.TXT included with the distribution.
4- */
5- package org .epics .vtype ;
6-
7- /**
8- * A value that provides display information.
9- *
10- * @author carcassi
11- */
12- interface DisplayProvider {
13-
14- /**
15- * The display associated with this value.
16- *
17- * @return the display; not null
18- */
19- Display getDisplay ();
20- }
1+ /**
2+ * Copyright information and license terms for this software can be
3+ * found in the file LICENSE.TXT included with the distribution.
4+ */
5+ package org .epics .vtype ;
6+
7+ /**
8+ * A value that provides display information.
9+ *
10+ * @author carcassi
11+ */
12+ public interface DisplayProvider {
13+
14+ /**
15+ * The display associated with this value.
16+ *
17+ * @return the display; not null
18+ */
19+ Display getDisplay ();
20+ }
Original file line number Diff line number Diff line change 1- /**
2- * Copyright information and license terms for this software can be
3- * found in the file LICENSE.TXT included with the distribution.
4- */
5- package org .epics .vtype ;
6-
7- /**
8- * A value that provides time information.
9- *
10- * @author carcassi
11- */
12- interface TimeProvider {
13-
14- /**
15- * The time associated with this value.
16- *
17- * @return the time; not null
18- */
19- Time getTime ();
20- }
1+ /**
2+ * Copyright information and license terms for this software can be
3+ * found in the file LICENSE.TXT included with the distribution.
4+ */
5+ package org .epics .vtype ;
6+
7+ /**
8+ * A value that provides time information.
9+ *
10+ * @author carcassi
11+ */
12+ public interface TimeProvider {
13+
14+ /**
15+ * The time associated with this value.
16+ *
17+ * @return the time; not null
18+ */
19+ Time getTime ();
20+ }
You can’t perform that action at this time.
0 commit comments