Interface BoardTroubleIface
- All Superinterfaces:
TroubleIface
Interface for
Trouble
s that implements the board iface.
This is a standard way to describe to external systems that the
Trouble
includes board information in a standard format.
Implementations must call
BoardTroubleIface.addIface(trouble)
to ensure that
external systems know the Trouble
implements this interface.
This indicates the board interface is implemented and the following data is available:
boardPath
: Path to the associated board
- Since:
- 1.0
- Version:
- 2023-09-12
-
Method Summary
Modifier and TypeMethodDescriptionstatic void
Adds the iface to the specifiedTrouble
.Returns the board path.
-
Method Details
-
addIface
Adds the iface to the specifiedTrouble
. Should be called in theTrouble
constructor.- Parameters:
trouble
- theTrouble
to add the iface to
-
getBoardPath
String getBoardPath()Returns the board path.
-