aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/me/shedaniel/rei/api/DisplayHelper.java
diff options
context:
space:
mode:
authorUnknown <shekwancheung0528@gmail.com>2019-06-18 20:07:38 +0800
committerUnknown <shekwancheung0528@gmail.com>2019-06-18 20:07:38 +0800
commit609c2238e12ad9835c449cd9f9da842ca747d5dc (patch)
tree87d52715819b31543afe88137cd196ce6d7e9cad /src/main/java/me/shedaniel/rei/api/DisplayHelper.java
parent4f3a2eae017efe3ff6896f5c01d58c7b1a27d814 (diff)
downloadRoughlyEnoughItems-609c2238e12ad9835c449cd9f9da842ca747d5dc.tar.gz
RoughlyEnoughItems-609c2238e12ad9835c449cd9f9da842ca747d5dc.tar.bz2
RoughlyEnoughItems-609c2238e12ad9835c449cd9f9da842ca747d5dc.zip
nah let's break everyone's plugins
Diffstat (limited to 'src/main/java/me/shedaniel/rei/api/DisplayHelper.java')
-rw-r--r--src/main/java/me/shedaniel/rei/api/DisplayHelper.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/main/java/me/shedaniel/rei/api/DisplayHelper.java b/src/main/java/me/shedaniel/rei/api/DisplayHelper.java
index 755ca84b3..53d35a3dd 100644
--- a/src/main/java/me/shedaniel/rei/api/DisplayHelper.java
+++ b/src/main/java/me/shedaniel/rei/api/DisplayHelper.java
@@ -22,14 +22,14 @@ public interface DisplayHelper {
* @return the sorted list of responsible bounds handlers
* @see DisplayHelper#getResponsibleBoundsHandler(Class) for the unsorted version
*/
- List<DisplayBoundsHandler> getSortedBoundsHandlers(Class screenClass);
+ List<DisplayBoundsHandler<?>> getSortedBoundsHandlers(Class<?> screenClass);
/**
* Gets all registered bounds handlers
*
* @return the list of registered bounds handlers
*/
- List<DisplayBoundsHandler> getAllBoundsHandlers();
+ List<DisplayBoundsHandler<?>> getAllBoundsHandlers();
/**
* Gets all responsible bounds handlers
@@ -38,14 +38,14 @@ public interface DisplayHelper {
* @return the the list of responsible bounds handlers
* @see DisplayHelper#getSortedBoundsHandlers(Class) for the sorted version
*/
- DisplayBoundsHandler getResponsibleBoundsHandler(Class screenClass);
+ DisplayBoundsHandler<?> getResponsibleBoundsHandler(Class<?> screenClass);
/**
* Registers a bounds handler
*
* @param handler the handler to register
*/
- void registerBoundsHandler(DisplayBoundsHandler handler);
+ void registerBoundsHandler(DisplayBoundsHandler<?> handler);
/**
* Gets the base bounds handler api for exclusion zones