Skip to content

Commit 12d6869

Browse files
committed
update visibility of Providers for ca datasourse backward compatibility
TODO: this should be reverted in the future
1 parent a0a3e49 commit 12d6869

3 files changed

Lines changed: 60 additions & 60 deletions

File tree

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,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-
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+
}
Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,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-
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+
}
Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,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-
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+
}

0 commit comments

Comments
 (0)