diff options
author | mkoch <mkoch@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-04-19 05:20:12 +0000 |
---|---|---|
committer | mkoch <mkoch@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-04-19 05:20:12 +0000 |
commit | 2295aa6c8c8fcdb65dbc68006db984b978a1c689 (patch) | |
tree | 5bf3a7fd7b79ae251d31f0c6f157b5da2c08e6b0 /libjava/java/beans/beancontext/BeanContextSupport.java | |
parent | 66c6bae7a65cc3aec9e520b1f2e9a98ede5798df (diff) | |
download | ppe42-gcc-2295aa6c8c8fcdb65dbc68006db984b978a1c689.tar.gz ppe42-gcc-2295aa6c8c8fcdb65dbc68006db984b978a1c689.zip |
2005-04-19 Michael Koch <konqueror@gmx.de>
* gnu/java/awt/peer/gtk/GdkGraphics.java
(getClipBounds): Handle clip being null.
(setClip): Likewise.
* java/beans/beancontext/BeanContextSupport.java
(add): Implemented.
(addAll): Likewise.
(clear): Likewise.
(removeAll): Likewise.
(retainAll): Likewise.
2005-04-19 Michael Koch <konqueror@gmx.de>
* java/beans/beancontext/BeanContextServicesSupport.java
(BeanContextServicesSupport): Reimplemented.
(addBeanContextServicesListener): Implemented.
(initialize): Likewise.
(removeBeanContextServicesListener): Likewise.
* java/beans/beancontext/BeanContextSupport.java
(add): Likewise.
(addBeanContextMembershipListener): Likewise.
(getLocale): Likewise.
(initialize): Likewise.
(iterator): Likewise.
(remove): Likewise.
(toArray): Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@98375 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava/java/beans/beancontext/BeanContextSupport.java')
-rw-r--r-- | libjava/java/beans/beancontext/BeanContextSupport.java | 50 |
1 files changed, 31 insertions, 19 deletions
diff --git a/libjava/java/beans/beancontext/BeanContextSupport.java b/libjava/java/beans/beancontext/BeanContextSupport.java index e9e26cc995a..cb500530e36 100644 --- a/libjava/java/beans/beancontext/BeanContextSupport.java +++ b/libjava/java/beans/beancontext/BeanContextSupport.java @@ -1,5 +1,5 @@ -/* java.beans.beancontext.BeanContextSupport - Copyright (C) 2003 Free Software Foundation, Inc. +/* BeanContextSupport.java -- + Copyright (C) 2003, 2005 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -7,7 +7,7 @@ GNU Classpath is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. - + GNU Classpath is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU @@ -153,23 +153,31 @@ public class BeanContextSupport extends BeanContextChildSupport okToUseGui = visible; initialize (); - - throw new Error ("Not implemented"); } public boolean add (Object targetChild) { - throw new Error ("Not implemented"); + if (targetChild == null) + throw new IllegalArgumentException(); + + if (children.containsKey(targetChild)) + return false; + + // FIXME: The second argument is surely wrong. + children.put(targetChild, targetChild); + return true; } public boolean addAll (Collection c) { - throw new Error ("Not implemented"); + throw new UnsupportedOperationException(); } - public void addBeanContextMembershipListener (BeanContextMembershipListener bcml) + public void addBeanContextMembershipListener + (BeanContextMembershipListener listener) { - throw new Error ("Not implemented"); + if (! bcmListeners.contains(listener)) + bcmListeners.add(listener); } public boolean avoidingGui () @@ -216,7 +224,7 @@ public class BeanContextSupport extends BeanContextChildSupport public void clear () { - throw new Error ("Not implemented"); + throw new UnsupportedOperationException(); } public boolean contains (Object o) @@ -302,7 +310,7 @@ public class BeanContextSupport extends BeanContextChildSupport public Locale getLocale () { - throw new Error ("Not implemented"); + return locale; } public URL getResource (String name, BeanContextChild bcc) @@ -317,7 +325,8 @@ public class BeanContextSupport extends BeanContextChildSupport protected void initialize () { - throw new Error ("Not implemented"); + bcmListeners = new ArrayList(); + children = new HashMap(); } public Object instantiateChild (String beanName) @@ -343,7 +352,7 @@ public class BeanContextSupport extends BeanContextChildSupport public Iterator iterator () { - throw new Error ("Not implemented"); + return children.keySet().iterator(); } public boolean needsGui () @@ -369,17 +378,20 @@ public class BeanContextSupport extends BeanContextChildSupport public boolean remove (Object targetChild) { - throw new Error ("Not implemented"); + return remove(targetChild, true); } protected boolean remove (Object targetChild, boolean callChildSetBC) { + if (targetChild == null) + throw new IllegalArgumentException(); + throw new Error ("Not implemented"); } public boolean removeAll (Collection c) { - throw new Error ("Not implemented"); + throw new UnsupportedOperationException(); } public void removeBeanContextMembershipListener (BeanContextMembershipListener bcml) @@ -389,7 +401,7 @@ public class BeanContextSupport extends BeanContextChildSupport public boolean retainAll (Collection c) { - throw new Error ("Not implemented"); + throw new UnsupportedOperationException(); } protected final void serialize (ObjectOutputStream oos, Collection coll) @@ -416,12 +428,12 @@ public class BeanContextSupport extends BeanContextChildSupport public Object[] toArray () { - throw new Error ("Not implemented"); + return children.keySet().toArray(); } - public Object[] toArray (Object[] arry) + public Object[] toArray(Object[] array) { - throw new Error ("Not implemented"); + return children.keySet().toArray(array); } protected boolean validatePendingAdd (Object targetChild) |