2005-07-16 00:30:23 +00:00
|
|
|
/* BeanContextSupport.java --
|
|
|
|
Copyright (C) 2003, 2005 Free Software Foundation, Inc.
|
|
|
|
|
|
|
|
This file is part of GNU Classpath.
|
|
|
|
|
|
|
|
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
|
|
|
|
General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with GNU Classpath; see the file COPYING. If not, write to the
|
|
|
|
Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
|
|
|
02110-1301 USA.
|
|
|
|
|
|
|
|
Linking this library statically or dynamically with other modules is
|
|
|
|
making a combined work based on this library. Thus, the terms and
|
|
|
|
conditions of the GNU General Public License cover the whole
|
|
|
|
combination.
|
|
|
|
|
|
|
|
As a special exception, the copyright holders of this library give you
|
|
|
|
permission to link this library with independent modules to produce an
|
|
|
|
executable, regardless of the license terms of these independent
|
|
|
|
modules, and to copy and distribute the resulting executable under
|
|
|
|
terms of your choice, provided that you also meet, for each linked
|
|
|
|
independent module, the terms and conditions of the license of that
|
|
|
|
module. An independent module is a module which is not derived from
|
|
|
|
or based on this library. If you modify this library, you may extend
|
|
|
|
this exception to your version of the library, but you are not
|
|
|
|
obligated to do so. If you do not wish to do so, delete this
|
|
|
|
exception statement from your version. */
|
|
|
|
|
|
|
|
|
|
|
|
package java.beans.beancontext;
|
|
|
|
|
2006-05-18 17:29:21 +00:00
|
|
|
import gnu.classpath.NotImplementedException;
|
|
|
|
|
|
|
|
import java.beans.DesignMode;
|
2005-07-16 00:30:23 +00:00
|
|
|
import java.beans.PropertyChangeEvent;
|
|
|
|
import java.beans.PropertyChangeListener;
|
|
|
|
import java.beans.PropertyVetoException;
|
|
|
|
import java.beans.VetoableChangeListener;
|
|
|
|
import java.beans.Visibility;
|
|
|
|
import java.io.IOException;
|
|
|
|
import java.io.InputStream;
|
|
|
|
import java.io.ObjectInputStream;
|
|
|
|
import java.io.ObjectOutputStream;
|
|
|
|
import java.io.Serializable;
|
|
|
|
import java.net.URL;
|
|
|
|
import java.util.ArrayList;
|
|
|
|
import java.util.Collection;
|
|
|
|
import java.util.HashMap;
|
|
|
|
import java.util.Iterator;
|
|
|
|
import java.util.Locale;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @author Michael Koch
|
|
|
|
* @since 1.2
|
|
|
|
*/
|
|
|
|
public class BeanContextSupport extends BeanContextChildSupport
|
|
|
|
implements BeanContext, Serializable, PropertyChangeListener,
|
|
|
|
VetoableChangeListener
|
|
|
|
{
|
|
|
|
private static final long serialVersionUID = -4879613978649577204L;
|
2006-05-18 17:29:21 +00:00
|
|
|
|
|
|
|
// This won't show up in japi, but we mark it as a stub anyway,
|
|
|
|
// so that searches for NotImplementedException will find it.
|
2005-07-16 00:30:23 +00:00
|
|
|
private void readObject (ObjectInputStream s)
|
2006-05-18 17:29:21 +00:00
|
|
|
throws ClassNotFoundException, IOException, NotImplementedException
|
2005-07-16 00:30:23 +00:00
|
|
|
{
|
|
|
|
throw new Error ("Not implemented");
|
|
|
|
}
|
|
|
|
|
2006-05-18 17:29:21 +00:00
|
|
|
// This won't show up in japi, but we mark it as a stub anyway,
|
|
|
|
// so that searches for NotImplementedException will find it.
|
2005-07-16 00:30:23 +00:00
|
|
|
private void writeObject (ObjectOutputStream s)
|
2006-05-18 17:29:21 +00:00
|
|
|
throws ClassNotFoundException, IOException, NotImplementedException
|
2005-07-16 00:30:23 +00:00
|
|
|
{
|
|
|
|
throw new Error ("Not implemented");
|
|
|
|
}
|
|
|
|
|
|
|
|
protected class BCSChild implements Serializable
|
|
|
|
{
|
2005-11-15 23:20:01 +00:00
|
|
|
private static final long serialVersionUID = -5815286101609939109L;
|
2006-05-18 17:29:21 +00:00
|
|
|
|
|
|
|
private Object targetChild;
|
|
|
|
private Object peer;
|
|
|
|
|
|
|
|
BCSChild(Object targetChild, Object peer)
|
|
|
|
{
|
|
|
|
this.targetChild = targetChild;
|
|
|
|
this.peer = peer;
|
|
|
|
}
|
2005-07-16 00:30:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
protected static final class BCSIterator implements Iterator
|
|
|
|
{
|
2006-05-18 17:29:21 +00:00
|
|
|
private Iterator child;
|
|
|
|
|
|
|
|
BCSIterator(Iterator child)
|
|
|
|
{
|
|
|
|
this.child = child;
|
|
|
|
}
|
|
|
|
|
2005-07-16 00:30:23 +00:00
|
|
|
public boolean hasNext ()
|
|
|
|
{
|
2006-05-18 17:29:21 +00:00
|
|
|
return child.hasNext();
|
2005-07-16 00:30:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public Object next ()
|
|
|
|
{
|
2006-05-18 17:29:21 +00:00
|
|
|
return child.next();
|
2005-07-16 00:30:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public void remove ()
|
|
|
|
{
|
|
|
|
// This must be a noop remove operation.
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
protected transient ArrayList bcmListeners;
|
|
|
|
|
|
|
|
protected transient HashMap children;
|
|
|
|
|
|
|
|
protected transient boolean designTime;
|
|
|
|
|
|
|
|
protected transient Locale locale;
|
|
|
|
|
|
|
|
protected transient boolean okToUseGui;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Construct a BeanContextSupport instance.
|
|
|
|
*/
|
|
|
|
public BeanContextSupport ()
|
|
|
|
{
|
|
|
|
this (null, null, true, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Construct a BeanContextSupport instance.
|
|
|
|
*/
|
|
|
|
public BeanContextSupport (BeanContext peer)
|
|
|
|
{
|
|
|
|
this (peer, null, true, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Construct a BeanContextSupport instance.
|
|
|
|
*/
|
|
|
|
public BeanContextSupport (BeanContext peer, Locale lcle)
|
|
|
|
{
|
|
|
|
this (peer, lcle, true, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Construct a BeanContextSupport instance.
|
|
|
|
*/
|
|
|
|
public BeanContextSupport (BeanContext peer, Locale lcle, boolean dtime)
|
|
|
|
{
|
|
|
|
this (peer, lcle, dtime, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Construct a BeanContextSupport instance.
|
|
|
|
*/
|
|
|
|
public BeanContextSupport (BeanContext peer, Locale lcle, boolean dtime,
|
|
|
|
boolean visible)
|
|
|
|
{
|
2006-05-18 17:29:21 +00:00
|
|
|
super(peer);
|
|
|
|
|
|
|
|
locale = lcle == null ? Locale.getDefault() : lcle;
|
2005-07-16 00:30:23 +00:00
|
|
|
designTime = dtime;
|
|
|
|
okToUseGui = visible;
|
|
|
|
|
|
|
|
initialize ();
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean add (Object targetChild)
|
|
|
|
{
|
|
|
|
if (targetChild == null)
|
|
|
|
throw new IllegalArgumentException();
|
|
|
|
|
2006-05-18 17:29:21 +00:00
|
|
|
BCSChild child;
|
|
|
|
synchronized (children)
|
|
|
|
{
|
|
|
|
if (children.containsKey(targetChild)
|
|
|
|
|| ! validatePendingAdd(targetChild))
|
|
|
|
return false;
|
|
|
|
child = createBCSChild(targetChild, beanContextChildPeer);
|
|
|
|
children.put(targetChild, child);
|
|
|
|
}
|
|
|
|
synchronized (targetChild)
|
|
|
|
{
|
|
|
|
childJustAddedHook(targetChild, child);
|
|
|
|
}
|
|
|
|
fireChildrenAdded(new BeanContextMembershipEvent(this,
|
|
|
|
new Object[] { targetChild }));
|
2005-07-16 00:30:23 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean addAll (Collection c)
|
|
|
|
{
|
2006-05-18 17:29:21 +00:00
|
|
|
// Intentionally throws an exception.
|
2005-07-16 00:30:23 +00:00
|
|
|
throw new UnsupportedOperationException();
|
|
|
|
}
|
|
|
|
|
|
|
|
public void addBeanContextMembershipListener
|
|
|
|
(BeanContextMembershipListener listener)
|
|
|
|
{
|
2006-05-18 17:29:21 +00:00
|
|
|
synchronized (bcmListeners)
|
|
|
|
{
|
|
|
|
if (! bcmListeners.contains(listener))
|
|
|
|
bcmListeners.add(listener);
|
|
|
|
}
|
2005-07-16 00:30:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public boolean avoidingGui ()
|
2006-05-18 17:29:21 +00:00
|
|
|
throws NotImplementedException
|
2005-07-16 00:30:23 +00:00
|
|
|
{
|
|
|
|
throw new Error ("Not implemented");
|
|
|
|
}
|
|
|
|
|
|
|
|
protected Iterator bcsChildren ()
|
|
|
|
{
|
2006-05-18 17:29:21 +00:00
|
|
|
synchronized (children)
|
|
|
|
{
|
|
|
|
return new BCSIterator(children.values().iterator());
|
|
|
|
}
|
2005-07-16 00:30:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
protected void bcsPreDeserializationHook (ObjectInputStream ois)
|
2006-05-18 17:29:21 +00:00
|
|
|
throws ClassNotFoundException, IOException, NotImplementedException
|
2005-07-16 00:30:23 +00:00
|
|
|
{
|
|
|
|
throw new Error ("Not implemented");
|
|
|
|
}
|
|
|
|
|
|
|
|
protected void bcsPreSerializationHook (ObjectOutputStream oos)
|
2006-05-18 17:29:21 +00:00
|
|
|
throws IOException, NotImplementedException
|
2005-07-16 00:30:23 +00:00
|
|
|
{
|
|
|
|
throw new Error ("Not implemented");
|
|
|
|
}
|
|
|
|
|
|
|
|
protected void childDeserializedHook (Object child, BeanContextSupport.BCSChild bcsc)
|
2006-05-18 17:29:21 +00:00
|
|
|
throws NotImplementedException
|
2005-07-16 00:30:23 +00:00
|
|
|
{
|
|
|
|
throw new Error ("Not implemented");
|
|
|
|
}
|
|
|
|
|
|
|
|
protected void childJustAddedHook (Object child, BeanContextSupport.BCSChild bcsc)
|
|
|
|
{
|
2006-05-18 17:29:21 +00:00
|
|
|
// Do nothing in the base class.
|
2005-07-16 00:30:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
protected void childJustRemovedHook (Object child, BeanContextSupport.BCSChild bcsc)
|
|
|
|
{
|
2006-05-18 17:29:21 +00:00
|
|
|
// Do nothing in the base class.
|
2005-07-16 00:30:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
protected static final boolean classEquals (Class first, Class second)
|
|
|
|
{
|
2006-05-18 17:29:21 +00:00
|
|
|
// Lame function!
|
|
|
|
return (first == second || first.getName().equals(second.getName()));
|
2005-07-16 00:30:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public void clear ()
|
|
|
|
{
|
2006-05-18 17:29:21 +00:00
|
|
|
// This is the right thing to do.
|
|
|
|
// The JDK docs are really bad here.
|
2005-07-16 00:30:23 +00:00
|
|
|
throw new UnsupportedOperationException();
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean contains (Object o)
|
|
|
|
{
|
2006-05-18 17:29:21 +00:00
|
|
|
synchronized (children)
|
|
|
|
{
|
|
|
|
return children.containsKey(o);
|
|
|
|
}
|
2005-07-16 00:30:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public boolean containsAll (Collection c)
|
|
|
|
{
|
2006-05-18 17:29:21 +00:00
|
|
|
synchronized (children)
|
|
|
|
{
|
|
|
|
Iterator it = c.iterator();
|
|
|
|
while (it.hasNext())
|
|
|
|
if (! children.containsKey(it.next()))
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
2005-07-16 00:30:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public boolean containsKey (Object o)
|
|
|
|
{
|
2006-05-18 17:29:21 +00:00
|
|
|
synchronized (children)
|
|
|
|
{
|
|
|
|
return children.containsKey(o);
|
|
|
|
}
|
2005-07-16 00:30:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
protected final Object[] copyChildren ()
|
|
|
|
{
|
2006-05-18 17:29:21 +00:00
|
|
|
synchronized (children)
|
|
|
|
{
|
|
|
|
return children.keySet().toArray();
|
|
|
|
}
|
2005-07-16 00:30:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
protected BeanContextSupport.BCSChild createBCSChild (Object targetChild, Object peer)
|
|
|
|
{
|
2006-05-18 17:29:21 +00:00
|
|
|
return new BCSChild(targetChild, peer);
|
2005-07-16 00:30:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
protected final void deserialize (ObjectInputStream ois, Collection coll)
|
2006-05-18 17:29:21 +00:00
|
|
|
throws ClassNotFoundException, IOException, NotImplementedException
|
2005-07-16 00:30:23 +00:00
|
|
|
{
|
|
|
|
throw new Error ("Not implemented");
|
|
|
|
}
|
|
|
|
|
|
|
|
public void dontUseGui ()
|
2006-05-18 17:29:21 +00:00
|
|
|
throws NotImplementedException
|
2005-07-16 00:30:23 +00:00
|
|
|
{
|
|
|
|
throw new Error ("Not implemented");
|
|
|
|
}
|
|
|
|
|
|
|
|
protected final void fireChildrenAdded (BeanContextMembershipEvent bcme)
|
|
|
|
{
|
2006-05-18 17:29:21 +00:00
|
|
|
synchronized (bcmListeners)
|
|
|
|
{
|
|
|
|
Iterator it = bcmListeners.iterator();
|
|
|
|
while (it.hasNext())
|
|
|
|
{
|
|
|
|
BeanContextMembershipListener l
|
|
|
|
= (BeanContextMembershipListener) it.next();
|
|
|
|
l.childrenAdded(bcme);
|
|
|
|
}
|
|
|
|
}
|
2005-07-16 00:30:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
protected final void fireChildrenRemoved (BeanContextMembershipEvent bcme)
|
|
|
|
{
|
2006-05-18 17:29:21 +00:00
|
|
|
synchronized (bcmListeners)
|
|
|
|
{
|
|
|
|
Iterator it = bcmListeners.iterator();
|
|
|
|
while (it.hasNext())
|
|
|
|
{
|
|
|
|
BeanContextMembershipListener l
|
|
|
|
= (BeanContextMembershipListener) it.next();
|
|
|
|
l.childrenRemoved(bcme);
|
|
|
|
}
|
|
|
|
}
|
2005-07-16 00:30:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public BeanContext getBeanContextPeer ()
|
2006-05-18 17:29:21 +00:00
|
|
|
throws NotImplementedException
|
2005-07-16 00:30:23 +00:00
|
|
|
{
|
|
|
|
throw new Error ("Not implemented");
|
|
|
|
}
|
|
|
|
|
|
|
|
protected static final BeanContextChild getChildBeanContextChild (Object child)
|
2006-05-18 17:29:21 +00:00
|
|
|
throws NotImplementedException
|
2005-07-16 00:30:23 +00:00
|
|
|
{
|
|
|
|
throw new Error ("Not implemented");
|
|
|
|
}
|
|
|
|
|
|
|
|
protected static final BeanContextMembershipListener getChildBeanContextMembershipListener (Object child)
|
2006-05-18 17:29:21 +00:00
|
|
|
throws NotImplementedException
|
2005-07-16 00:30:23 +00:00
|
|
|
{
|
|
|
|
throw new Error ("Not implemented");
|
|
|
|
}
|
|
|
|
|
|
|
|
protected static final PropertyChangeListener getChildPropertyChangeListener (Object child)
|
2006-05-18 17:29:21 +00:00
|
|
|
throws NotImplementedException
|
2005-07-16 00:30:23 +00:00
|
|
|
{
|
|
|
|
throw new Error ("Not implemented");
|
|
|
|
}
|
|
|
|
|
|
|
|
protected static final Serializable getChildSerializable (Object child)
|
2006-05-18 17:29:21 +00:00
|
|
|
throws NotImplementedException
|
2005-07-16 00:30:23 +00:00
|
|
|
{
|
|
|
|
throw new Error ("Not implemented");
|
|
|
|
}
|
|
|
|
|
|
|
|
protected static final VetoableChangeListener getChildVetoableChangeListener (Object child)
|
2006-05-18 17:29:21 +00:00
|
|
|
throws NotImplementedException
|
2005-07-16 00:30:23 +00:00
|
|
|
{
|
|
|
|
throw new Error ("Not implemented");
|
|
|
|
}
|
|
|
|
|
|
|
|
protected static final Visibility getChildVisibility (Object child)
|
2006-05-18 17:29:21 +00:00
|
|
|
throws NotImplementedException
|
2005-07-16 00:30:23 +00:00
|
|
|
{
|
|
|
|
throw new Error ("Not implemented");
|
|
|
|
}
|
|
|
|
|
|
|
|
public Locale getLocale ()
|
|
|
|
{
|
|
|
|
return locale;
|
|
|
|
}
|
|
|
|
|
|
|
|
public URL getResource (String name, BeanContextChild bcc)
|
|
|
|
{
|
2006-05-18 17:29:21 +00:00
|
|
|
if (! contains(bcc))
|
|
|
|
throw new IllegalArgumentException("argument not a child");
|
|
|
|
ClassLoader loader = bcc.getClass().getClassLoader();
|
|
|
|
return (loader == null ? ClassLoader.getSystemResource(name)
|
|
|
|
: loader.getResource(name));
|
2005-07-16 00:30:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public InputStream getResourceAsStream (String name, BeanContextChild bcc)
|
|
|
|
{
|
2006-05-18 17:29:21 +00:00
|
|
|
if (! contains(bcc))
|
|
|
|
throw new IllegalArgumentException("argument not a child");
|
|
|
|
ClassLoader loader = bcc.getClass().getClassLoader();
|
|
|
|
return (loader == null ? ClassLoader.getSystemResourceAsStream(name)
|
|
|
|
: loader.getResourceAsStream(name));
|
2005-07-16 00:30:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
protected void initialize ()
|
|
|
|
{
|
|
|
|
bcmListeners = new ArrayList();
|
|
|
|
children = new HashMap();
|
|
|
|
}
|
|
|
|
|
|
|
|
public Object instantiateChild (String beanName)
|
2006-05-18 17:29:21 +00:00
|
|
|
throws IOException, ClassNotFoundException, NotImplementedException
|
2005-07-16 00:30:23 +00:00
|
|
|
{
|
|
|
|
throw new Error ("Not implemented");
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean isDesignTime ()
|
|
|
|
{
|
2006-05-18 17:29:21 +00:00
|
|
|
return designTime;
|
2005-07-16 00:30:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public boolean isEmpty ()
|
|
|
|
{
|
2006-05-18 17:29:21 +00:00
|
|
|
synchronized (children)
|
|
|
|
{
|
|
|
|
return children.isEmpty();
|
|
|
|
}
|
2005-07-16 00:30:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public boolean isSerializing ()
|
2006-05-18 17:29:21 +00:00
|
|
|
throws NotImplementedException
|
2005-07-16 00:30:23 +00:00
|
|
|
{
|
|
|
|
throw new Error ("Not implemented");
|
|
|
|
}
|
|
|
|
|
|
|
|
public Iterator iterator ()
|
|
|
|
{
|
2006-05-18 17:29:21 +00:00
|
|
|
synchronized (children)
|
|
|
|
{
|
|
|
|
return children.keySet().iterator();
|
|
|
|
}
|
2005-07-16 00:30:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public boolean needsGui ()
|
2006-05-18 17:29:21 +00:00
|
|
|
throws NotImplementedException
|
2005-07-16 00:30:23 +00:00
|
|
|
{
|
|
|
|
throw new Error ("Not implemented");
|
|
|
|
}
|
|
|
|
|
|
|
|
public void okToUseGui ()
|
2006-05-18 17:29:21 +00:00
|
|
|
throws NotImplementedException
|
2005-07-16 00:30:23 +00:00
|
|
|
{
|
|
|
|
throw new Error ("Not implemented");
|
|
|
|
}
|
|
|
|
|
|
|
|
public void propertyChange (PropertyChangeEvent pce)
|
2006-05-18 17:29:21 +00:00
|
|
|
throws NotImplementedException
|
2005-07-16 00:30:23 +00:00
|
|
|
{
|
|
|
|
throw new Error ("Not implemented");
|
|
|
|
}
|
|
|
|
|
|
|
|
public final void readChildren (ObjectInputStream ois)
|
2006-05-18 17:29:21 +00:00
|
|
|
throws IOException, ClassNotFoundException, NotImplementedException
|
2005-07-16 00:30:23 +00:00
|
|
|
{
|
|
|
|
throw new Error ("Not implemented");
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean remove (Object targetChild)
|
|
|
|
{
|
|
|
|
return remove(targetChild, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected boolean remove (Object targetChild, boolean callChildSetBC)
|
2006-05-18 17:29:21 +00:00
|
|
|
throws NotImplementedException
|
2005-07-16 00:30:23 +00:00
|
|
|
{
|
|
|
|
if (targetChild == null)
|
|
|
|
throw new IllegalArgumentException();
|
|
|
|
|
|
|
|
throw new Error ("Not implemented");
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean removeAll (Collection c)
|
|
|
|
{
|
2006-05-18 17:29:21 +00:00
|
|
|
// Intentionally throws an exception.
|
2005-07-16 00:30:23 +00:00
|
|
|
throw new UnsupportedOperationException();
|
|
|
|
}
|
|
|
|
|
|
|
|
public void removeBeanContextMembershipListener (BeanContextMembershipListener bcml)
|
|
|
|
{
|
2006-05-18 17:29:21 +00:00
|
|
|
synchronized (bcmListeners)
|
|
|
|
{
|
|
|
|
bcmListeners.remove(bcml);
|
|
|
|
}
|
2005-07-16 00:30:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public boolean retainAll (Collection c)
|
|
|
|
{
|
2006-05-18 17:29:21 +00:00
|
|
|
// Intentionally throws an exception.
|
2005-07-16 00:30:23 +00:00
|
|
|
throw new UnsupportedOperationException();
|
|
|
|
}
|
|
|
|
|
|
|
|
protected final void serialize (ObjectOutputStream oos, Collection coll)
|
2006-05-18 17:29:21 +00:00
|
|
|
throws IOException, NotImplementedException
|
2005-07-16 00:30:23 +00:00
|
|
|
{
|
|
|
|
throw new Error ("Not implemented");
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setDesignTime (boolean dtime)
|
|
|
|
{
|
2006-05-18 17:29:21 +00:00
|
|
|
boolean save = designTime;
|
|
|
|
designTime = dtime;
|
|
|
|
firePropertyChange(DesignMode.PROPERTYNAME, Boolean.valueOf(save),
|
|
|
|
Boolean.valueOf(dtime));
|
2005-07-16 00:30:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public void setLocale (Locale newLocale)
|
|
|
|
throws PropertyVetoException
|
|
|
|
{
|
2006-05-18 17:29:21 +00:00
|
|
|
if (newLocale == null || locale == newLocale)
|
|
|
|
return;
|
|
|
|
fireVetoableChange("locale", locale, newLocale);
|
|
|
|
Locale oldLocale = locale;
|
|
|
|
locale = newLocale;
|
|
|
|
firePropertyChange("locale", oldLocale, newLocale);
|
2005-07-16 00:30:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public int size ()
|
|
|
|
{
|
2006-05-18 17:29:21 +00:00
|
|
|
synchronized (children)
|
|
|
|
{
|
|
|
|
return children.size();
|
|
|
|
}
|
2005-07-16 00:30:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public Object[] toArray ()
|
|
|
|
{
|
2006-05-18 17:29:21 +00:00
|
|
|
synchronized (children)
|
|
|
|
{
|
|
|
|
return children.keySet().toArray();
|
|
|
|
}
|
2005-07-16 00:30:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public Object[] toArray(Object[] array)
|
2006-05-18 17:29:21 +00:00
|
|
|
throws NotImplementedException
|
2005-07-16 00:30:23 +00:00
|
|
|
{
|
2006-05-18 17:29:21 +00:00
|
|
|
// This implementation is incorrect, I think.
|
|
|
|
synchronized (children)
|
|
|
|
{
|
|
|
|
return children.keySet().toArray(array);
|
|
|
|
}
|
2005-07-16 00:30:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
protected boolean validatePendingAdd (Object targetChild)
|
|
|
|
{
|
2006-05-18 17:29:21 +00:00
|
|
|
return true;
|
2005-07-16 00:30:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
protected boolean validatePendingRemove (Object targetChild)
|
|
|
|
{
|
2006-05-18 17:29:21 +00:00
|
|
|
return true;
|
2005-07-16 00:30:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public void vetoableChange (PropertyChangeEvent pce)
|
2006-05-18 17:29:21 +00:00
|
|
|
throws PropertyVetoException, NotImplementedException
|
2005-07-16 00:30:23 +00:00
|
|
|
{
|
|
|
|
throw new Error ("Not implemented");
|
|
|
|
}
|
|
|
|
|
|
|
|
public final void writeChildren (ObjectOutputStream oos)
|
2006-05-18 17:29:21 +00:00
|
|
|
throws IOException, NotImplementedException
|
2005-07-16 00:30:23 +00:00
|
|
|
{
|
|
|
|
throw new Error ("Not implemented");
|
|
|
|
}
|
|
|
|
}
|