From f0adb9e37aacc6571c039311846e34d9f0479a4c Mon Sep 17 00:00:00 2001 From: GoToLoop Date: Sat, 9 Jul 2016 22:40:48 -0300 Subject: [PATCH] extends ControllerInterface< T > Mini-tweaks... --- src/controlP5/ControllerInterface.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/controlP5/ControllerInterface.java b/src/controlP5/ControllerInterface.java index 6a4a355..033aee8 100755 --- a/src/controlP5/ControllerInterface.java +++ b/src/controlP5/ControllerInterface.java @@ -1,5 +1,3 @@ -package controlP5; - /** * controlP5 is a processing gui library. * @@ -25,6 +23,8 @@ package controlP5; * */ +package controlP5; + import processing.core.PApplet; import processing.core.PFont; import processing.core.PGraphics; @@ -35,7 +35,7 @@ import processing.event.KeyEvent; * The ControllerInterface is inherited by all ControllerGroup and Controller classes. * */ -public interface ControllerInterface< T > { +public interface ControllerInterface< T extends ControllerInterface< T > > { @ControlP5.Invisible public void init( );