File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
source/docs/software/dashboards/shuffleboard/custom-widgets Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -78,7 +78,7 @@ It also must include a ``@ParametrizedController`` annotation that points to the
78
78
*/
79
79
80
80
@Description (name = " MyPoint2D" , dataTypes = MyPoint2D . class)
81
- @ParamatrizedController (" Point2DWidget.fxml" )
81
+ @ParametrizedController (" Point2DWidget.fxml" )
82
82
public final class Point2DWidget extends SimpleAnnotatedWidget<MyPoint2D > {
83
83
84
84
}
@@ -118,7 +118,7 @@ In order to display our pane on our custom widget we need to override the ``getV
118
118
import javafx.fxml.FXML ;
119
119
120
120
@Description (name = " MyPoint2D" , dataTypes = MyPoint2D . class)
121
- @ParamatrizedController (" Point2DWidget.fxml" )
121
+ @ParametrizedController (" Point2DWidget.fxml" )
122
122
public final class Point2DWidget extends SimpleAnnotatedWidget<MyPoint2D > {
123
123
124
124
@FXML
@@ -153,7 +153,7 @@ A good practice is to set bindings in the ``initialize()`` method tagged with th
153
153
import javafx.fxml.FXML ;
154
154
155
155
@Description (name = " MyPoint2D" , dataTypes = MyPoint2D . class)
156
- @ParamatrizedController (" Point2DWidget.fxml" )
156
+ @ParametrizedController (" Point2DWidget.fxml" )
157
157
public final class Point2DWidget extends SimpleAnnotatedWidget<MyPoint2D > {
158
158
159
159
@FXML
You can’t perform that action at this time.
0 commit comments