Interface Debuggable
-
- All Known Implementing Classes:
VDBFieldData
,VDBTemplateMacro
,VDBTemplatePort
public interface Debuggable
Interace defining a debuggable instance.- Author:
- Matej Sekoranja (matej.sekoranja@cosylab.com
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getFullName()
Return fully qualified name of this object.void
initialize()
Initialize debug value to initial state.void
setConnected(boolean connected)
Set connection status.void
setDebugValue(String value, Date timeStamp, short severity)
Set debug value.
-
-
-
Method Detail
-
getFullName
String getFullName()
Return fully qualified name of this object.- Returns:
- fully qualified name of this object.
-
setDebugValue
void setDebugValue(String value, Date timeStamp, short severity)
Set debug value.- Parameters:
value
- debug valuetimeStamp
- timestamp of the valueseverity
- alarm severity
-
initialize
void initialize()
Initialize debug value to initial state.
-
setConnected
void setConnected(boolean connected)
Set connection status.- Parameters:
connected
-true
if instance is connected,false
otherwise
-
-