From cb4e73183103c13d8bcf7c7667e1b9ea181e1f5f Mon Sep 17 00:00:00 2001 From: Sven Gothel Date: Tue, 30 Aug 2011 15:42:59 +0200 Subject: NEWT Window/WindowImpl: Add generics - addChild()/removeChild() return boolean, see Collection::add/remove --- src/newt/classes/com/jogamp/newt/Window.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/newt/classes/com') diff --git a/src/newt/classes/com/jogamp/newt/Window.java b/src/newt/classes/com/jogamp/newt/Window.java index 5b3d93eec..a76862055 100644 --- a/src/newt/classes/com/jogamp/newt/Window.java +++ b/src/newt/classes/com/jogamp/newt/Window.java @@ -147,9 +147,9 @@ public interface Window extends NativeWindow, WindowClosingProtocol { // Child Window Management // - void addChild(NativeWindow win); + boolean addChild(NativeWindow win); - void removeChild(NativeWindow win); + boolean removeChild(NativeWindow win); // // Modes / States -- cgit v1.2.3