I'm checking this in.
This adds some constructors as pointed out by the reverse japi page.
Tom
2006-03-15 Tom Tromey <[EMAIL PROTECTED]>
* java/beans/beancontext/BeanContextSupport.java (BCSChild): New
constructor.
(BCSIterator): Likewise.
* java/beans/beancontext/BeanContextServicesSupport.java (BCSSChild):
New constructor.
(BCSSProxyServiceProvider): Likewise.
(BCSSServiceProvider): Likewise.
Index: java/beans/beancontext/BeanContextServicesSupport.java
===================================================================
RCS file:
/cvsroot/classpath/classpath/java/beans/beancontext/BeanContextServicesSupport.java,v
retrieving revision 1.7
diff -u -r1.7 BeanContextServicesSupport.java
--- java/beans/beancontext/BeanContextServicesSupport.java 27 Sep 2005
16:26:24 -0000 1.7
+++ java/beans/beancontext/BeanContextServicesSupport.java 16 Mar 2006
01:52:20 -0000
@@ -62,6 +62,10 @@
extends BeanContextSupport.BCSChild
{
private static final long serialVersionUID = -3263851306889194873L;
+
+ private BCSSChild()
+ {
+ }
}
protected class BCSSProxyServiceProvider
@@ -69,7 +73,11 @@
BeanContextServiceRevokedListener
{
private static final long serialVersionUID = 7078212910685744490L;
-
+
+ private BCSSProxyServiceProvider()
+ {
+ }
+
public Iterator getCurrentServiceSelectors (BeanContextServices bcs,
Class serviceClass)
{
@@ -104,6 +112,10 @@
protected BeanContextServiceProvider serviceProvider;
+ private BCSSServiceProvider()
+ {
+ }
+
protected BeanContextServiceProvider getServiceProvider()
{
return serviceProvider;
Index: java/beans/beancontext/BeanContextSupport.java
===================================================================
RCS file:
/cvsroot/classpath/classpath/java/beans/beancontext/BeanContextSupport.java,v
retrieving revision 1.6
diff -u -r1.6 BeanContextSupport.java
--- java/beans/beancontext/BeanContextSupport.java 27 Sep 2005 16:26:24
-0000 1.6
+++ java/beans/beancontext/BeanContextSupport.java 16 Mar 2006 01:52:20
-0000
@@ -80,10 +80,18 @@
protected class BCSChild implements Serializable
{
private static final long serialVersionUID = -5815286101609939109L;
+
+ BCSChild()
+ {
+ }
}
protected static final class BCSIterator implements Iterator
{
+ BCSIterator()
+ {
+ }
+
public boolean hasNext ()
{
throw new Error ("Not implemented");