static JWindow showAnimation(S imageID, double seconds) { ret showAnimationInTopRightCorner(imageID, seconds); } static JWindow showAnimation(S imageID) { ret showAnimationInTopRightCorner(imageID); } static JWindow showAnimation(BufferedImage image) { ret showAnimationInTopRightCorner(image, ""); } static JWindow showAnimation(BufferedImage image, S text, double seconds) { ret showAnimationInTopRightCorner(image, text, seconds); } static JWindow showAnimation(BufferedImage image, double seconds) { ret showAnimationInTopRightCorner(image, "", seconds); } static JWindow showAnimation(S imageID, S text, double seconds) { ret showAnimationInTopRightCorner(imageID, text, seconds); }