Package io.github.oblarg.oblog
Interface SimpleWidgetWrapper
-
public interface SimpleWidgetWrapperA wrapper for WPILib's SimpleWidget; wrapped to allow the Logger to substitute a NT-only implementation if desired.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description edu.wpi.first.networktables.GenericEntrygetEntry()SimpleWidgetWrapperwithPosition(int columnIndex, int rowIndex)SimpleWidgetWrapperwithProperties(java.util.Map<java.lang.String,java.lang.Object> properties)SimpleWidgetWrapperwithSize(int width, int height)SimpleWidgetWrapperwithWidget(java.lang.String widgetType)
-
-
-
Method Detail
-
getEntry
edu.wpi.first.networktables.GenericEntry getEntry()
-
withProperties
SimpleWidgetWrapper withProperties(java.util.Map<java.lang.String,java.lang.Object> properties)
-
withWidget
SimpleWidgetWrapper withWidget(java.lang.String widgetType)
-
withPosition
SimpleWidgetWrapper withPosition(int columnIndex, int rowIndex)
-
withSize
SimpleWidgetWrapper withSize(int width, int height)
-
-