You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: SuperiorPlugin/src/main/java/com/scrappers/superiorExtendedEngine/menuStates/uiPager/UiPager.java
+33-24
Original file line number
Diff line number
Diff line change
@@ -180,40 +180,49 @@ public void forEachUiState(UiStatesLooper.Modifiable.Looper uiStatesLooper){
180
180
}
181
181
182
182
/**
183
-
* Runs an anonymous asynchronous searching task function for some items inside a searchList based on a list of searchKeyWords.
183
+
* Runs a searching task function for some items inside a searchList based on a list of searchKeyWords.
184
184
* @param searchList the search list you want to traverse through, it should be parallel to the UiStates you want to update.
185
185
* @param searchKeyWords the keywords you want to look for inside this search list.
186
186
* @param injector injects what you want to do when an item is returned by the search engine.
187
187
* @return a list of the founded strings from the searchList based on the search keywords.
188
-
* @throws Exception throws an exception if the search custom thread fails.
189
-
* @apiNote <b> <T extends Object> synchronized(T)</b> marks a thread-safe function by the dead locking other threads synchronized on the same object scheduled or started by the thread factory.
0 commit comments