File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -7,28 +7,32 @@ public abstract class CustomViewOwner extends ViewOwner {
77
88 /**
99 * Creates the top level view for this owner.
10- * @apiNote If you want the vanilla interaction of this class, return {@code default_createUI();}
10+ * <br><br>
11+ * API Note: If you want the vanilla interaction of this class, return {@code default_createUI();}
1112 */
1213 @ Override
1314 abstract protected View createUI ();
1415
1516 /**
1617 * Initializes the UI panel.
17- * @apiNote If you want the vanilla interaction of this class, return {@code default_initUI();}
18+ * <br><br>
19+ * API Note: If you want the vanilla interaction of this class, return {@code default_initUI();}
1820 */
1921 @ Override
2022 abstract protected void initUI ();
2123
2224 /**
2325 * Reset UI controls.
24- * @apiNote If you want the vanilla interaction of this class, return {@code default_resetUI();}
26+ * <br><br>
27+ * API Note: If you want the vanilla interaction of this class, return {@code default_resetUI();}
2528 */
2629 @ Override
2730 abstract protected void resetUI ();
2831
2932 /**
3033 * Respond to UI controls.
31- * @apiNote If you want the vanilla interaction of this class, return {@code default_respondUI(ViewEvent);}
34+ * <br><br>
35+ * API Note: If you want the vanilla interaction of this class, return {@code default_respondUI(ViewEvent);}
3236 * @param anEvent Any event that has been caught by this ViewOwner.
3337 */
3438 @ Override
You can’t perform that action at this time.
0 commit comments