diff options
author | mkoch <mkoch@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-03-18 18:16:54 +0000 |
---|---|---|
committer | mkoch <mkoch@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-03-18 18:16:54 +0000 |
commit | 02b793073bd9f32016aa86ce5f1c9728c34e3ffe (patch) | |
tree | cfffc936c1690e91c2b2381097e711fbdfd7bb58 /libjava/java/beans/beancontext/BeanContextServicesSupport.java | |
parent | 8cccd283d23f26d115a54fdabb9221d226c66073 (diff) | |
download | ppe42-gcc-02b793073bd9f32016aa86ce5f1c9728c34e3ffe.tar.gz ppe42-gcc-02b793073bd9f32016aa86ce5f1c9728c34e3ffe.zip |
2003-03-18 Michael Koch <konqueror@gmx.de>
* java/awt/ScrollPane.java
(ScrollPane): Rewrote for new ScrollPaneAdjustable.
(getViewportSize): Likewise.
(addNotify): Likewise.
(removeNotify): Likewise.
* java/awt/ScrollPaneAdjustable.java
(ScrollPaneAdjustable): No longer extends Scrollbar.
* java/beans/beancontext/BeanContextServices.java:
Reformated.
(getService): Added throws TooManyListenersException;
* java/beans/beancontext/BeanContextServicesSupport.java:
Reformated.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@64538 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava/java/beans/beancontext/BeanContextServicesSupport.java')
-rw-r--r-- | libjava/java/beans/beancontext/BeanContextServicesSupport.java | 46 |
1 files changed, 31 insertions, 15 deletions
diff --git a/libjava/java/beans/beancontext/BeanContextServicesSupport.java b/libjava/java/beans/beancontext/BeanContextServicesSupport.java index ad6773e68e3..02ee53aa909 100644 --- a/libjava/java/beans/beancontext/BeanContextServicesSupport.java +++ b/libjava/java/beans/beancontext/BeanContextServicesSupport.java @@ -131,12 +131,14 @@ public class BeanContextServicesSupport this (peer, lcle, true, true); } - public BeanContextServicesSupport (BeanContextServices peer, Locale lcle, boolean dtime) + public BeanContextServicesSupport (BeanContextServices peer, Locale lcle, + boolean dtime) { this (peer, lcle, dtime, true); } - public BeanContextServicesSupport (BeanContextServices peer, Locale lcle, boolean dtime, boolean visible) + public BeanContextServicesSupport (BeanContextServices peer, Locale lcle, + boolean dtime, boolean visible) { throw new Error ("Not implemented"); } @@ -146,12 +148,14 @@ public class BeanContextServicesSupport throw new Error ("Not implemented"); } - public boolean addService (Class serviceClass, BeanContextServiceProvider bcsp) + public boolean addService (Class serviceClass, BeanContextServiceProvider bcsp) { throw new Error ("Not implemented"); } - protected boolean addService (Class serviceClass, BeanContextServiceProvider bcsp, boolean fireEvent) + protected boolean addService (Class serviceClass, + BeanContextServiceProvider bcsp, + boolean fireEvent) { throw new Error ("Not implemented"); } @@ -167,22 +171,26 @@ public class BeanContextServicesSupport { throw new Error ("Not implemented"); } - protected void childJustRemovedHook (Object child, BeanContextSupport.BCSChild bcsc) + + protected void childJustRemovedHook (Object child, + BeanContextSupport.BCSChild bcsc) { throw new Error ("Not implemented"); } - protected BeanContextSupport.BCSChild createBCSChild (Object targetChild, Object peer) + protected BeanContextSupport.BCSChild createBCSChild (Object targetChild, + Object peer) { throw new Error ("Not implemented"); } - protected BeanContextServicesSupport.BCSSServiceProvider createBCSSServiceProvider (Class sc, BeanContextServiceProvider bcsp) + protected BeanContextServicesSupport.BCSSServiceProvider + createBCSSServiceProvider (Class sc, BeanContextServiceProvider bcsp) { throw new Error ("Not implemented"); } - protected final void fireServiceAdded (BeanContextServiceAvailableEvent bcssae) + protected final void fireServiceAdded (BeanContextServiceAvailableEvent bcssae) { throw new Error ("Not implemented"); } @@ -192,12 +200,14 @@ public class BeanContextServicesSupport throw new Error ("Not implemented"); } - protected final void fireServiceRevoked (BeanContextServiceRevokedEvent bcsre) + protected final void + fireServiceRevoked (BeanContextServiceRevokedEvent bcsre) { throw new Error ("Not implemented"); } - protected final void fireServiceRevoked (Class serviceClass, boolean revokeNow) + protected final void fireServiceRevoked (Class serviceClass, + boolean revokeNow) { throw new Error ("Not implemented"); } @@ -207,7 +217,8 @@ public class BeanContextServicesSupport throw new Error ("Not implemented"); } - protected static final BeanContextServicesListener getChildBeanContextServicesListener (Object child) + protected static final BeanContextServicesListener + getChildBeanContextServicesListener (Object child) { throw new Error ("Not implemented"); } @@ -222,7 +233,9 @@ public class BeanContextServicesSupport throw new Error ("Not implemented"); } - public Object getService (BeanContextChild child, Object requestor, Class serviceClass, Object serviceSelector, BeanContextServiceRevokedListener bcsrl) + public Object getService (BeanContextChild child, Object requestor, + Class serviceClass, Object serviceSelector, + BeanContextServiceRevokedListener bcsrl) throws TooManyListenersException { throw new Error ("Not implemented"); @@ -248,17 +261,20 @@ public class BeanContextServicesSupport throw new Error ("Not implemented"); } - public void releaseService (BeanContextChild child, Object requestor, Object service) + public void releaseService (BeanContextChild child, Object requestor, + Object service) { throw new Error ("Not implemented"); } - public void removeBeanContextServicesListener (BeanContextServicesListener bcsl) + public void + removeBeanContextServicesListener (BeanContextServicesListener bcsl) { throw new Error ("Not implemented"); } - public void revokeService (Class serviceClass, BeanContextServiceProvider bcsp, boolean revokeCurrentServicesNow) + public void revokeService (Class serviceClass, BeanContextServiceProvider bcsp, + boolean revokeCurrentServicesNow) { throw new Error ("Not implemented"); } |