Skip to content

Commit 821dc85

Browse files
committed
@APinote is not supported by Gradle Javadoc plugin.
1 parent d980f58 commit 821dc85

1 file changed

Lines changed: 8 additions & 4 deletions

File tree

src/snap/view/CustomViewOwner.java

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)