Interface WhiteboardAware
-
public interface WhiteboardAware
Marker interface for services than can hold a whiteboard.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description @Nullable Whiteboard
getWhiteboard()
Returns the whiteboardvoid
setWhiteboard(@NotNull Whiteboard whiteboard)
Sets the whiteboard.
-
-
-
Method Detail
-
setWhiteboard
void setWhiteboard(@NotNull @NotNull Whiteboard whiteboard)
Sets the whiteboard.- Parameters:
whiteboard
- the whiteboard
-
getWhiteboard
@Nullable @Nullable Whiteboard getWhiteboard()
Returns the whiteboard- Returns:
- the whiteboard
-
-