Java Doc for BeanContextServicesSupport.java in  » Apache-Harmony-Java-SE » java-package » java » beans » beancontext » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Apache Harmony Java SE » java package » java.beans.beancontext 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   java.beans.beancontext.BeanContextChildSupport
      java.beans.beancontext.BeanContextSupport
         java.beans.beancontext.BeanContextServicesSupport

BeanContextServicesSupport
public class BeanContextServicesSupport extends BeanContextSupport implements BeanContextServices,Serializable(Code)
This support class implements BeanContextServices interface. This class can be used directly, or be a super class of your class, or be a delegate of your implementation that needs to support BeanContextServices interface.

Inner Class :protected class BCSSChild extends BeanContextSupport.BCSChild
Inner Class :protected class BCSSProxyServiceProvider implements BeanContextServiceProvider,BeanContextServiceRevokedListener
Inner Class :protected static class BCSSServiceProvider implements Serializable

Field Summary
protected transient  ArrayListbcsListeners
     A list of registered BeanContextServicesListeners.
protected transient  BCSSProxyServiceProviderproxy
     A proxy service provider that delegates service requests to the parent context.
final static  longserialVersionUID
    
protected transient  intserializable
     The number of serializable service providers currently registered.
protected transient  HashMapservices
     A map of all registered services - key is service class, value is BCSSServiceProvider object.

Constructor Summary
public  BeanContextServicesSupport()
     Constructs a standard BeanContextServicesSupport.
public  BeanContextServicesSupport(BeanContextServices peer)
     Constructs a BeanContextServicesSupport which is a delegate of the given peer.
public  BeanContextServicesSupport(BeanContextServices peer, Locale locale)
     Constructs a BeanContextServicesSupport which is a delegate of the given peer.
public  BeanContextServicesSupport(BeanContextServices peer, Locale locale, boolean designTime)
     Constructs a BeanContextServicesSupport which is a delegate of the given peer.
public  BeanContextServicesSupport(BeanContextServices peer, Locale locale, boolean designTime, boolean okToUseGui)
     Constructs a BeanContextServicesSupport which is a delegate of the given peer.

Method Summary
public  voidaddBeanContextServicesListener(BeanContextServicesListener listener)
    
public  booleanaddService(Class serviceClass, BeanContextServiceProvider provider)
     Add a service to this context.
protected  booleanaddService(Class serviceClass, BeanContextServiceProvider provider, boolean fireEvent)
     Add a service to this context.
protected  voidbcsPreDeserializationHook(ObjectInputStream ois)
     Deserializes all serializable services and their providers before the children of this context is deserialized.

First a int is read, indicating the number of services to read.

protected  voidbcsPreSerializationHook(ObjectOutputStream oos)
     Serializes all serializable services and their providers before the children of this context is serialized.

First a int is writtern, indicating the number of serializable services.

protected  voidchildJustRemovedHook(Object child, BCSChild bcsChild)
     This method is called everytime a child is removed from this context.
protected  BCSChildcreateBCSChild(Object child, Object proxyPeer)
     Creates a BCSSChild object to company the given child.
protected  BCSSServiceProvidercreateBCSSServiceProvider(Class serviceClass, BeanContextServiceProvider provider)
     Creates a BCSSServiceProvider to company the given service.
final protected  voidfireServiceAdded(Class serviceClass)
     Fires a BeanContextServiceAvailableEvent to registered BeanContextServicesListeners.
final protected  voidfireServiceAdded(BeanContextServiceAvailableEvent event)
     Fires a BeanContextServiceAvailableEvent to registered BeanContextServicesListeners.
final protected  voidfireServiceRevoked(Class serviceClass, boolean revokeNow)
     Fires a BeanContextServiceRevokedEvent to registered BeanContextServicesListeners.
final protected  voidfireServiceRevoked(BeanContextServiceRevokedEvent event)
     Fires a BeanContextServiceRevokedEvent to registered BeanContextServicesListeners.
public  BeanContextServicesgetBeanContextServicesPeer()
     Returns the peer of this context casted as BeanContextServices.
final protected static  BeanContextServicesListenergetChildBeanContextServicesListener(Object child)
     Returns the given child casted to BeanContextServicesListener, or null if it does not implements the interface.
public  IteratorgetCurrentServiceClasses()
     Returns an iterator of all registered service classes, with removed() disabled.
public  IteratorgetCurrentServiceSelectors(Class serviceClass)
     Returns the service selectors of the specified service.
public  ObjectgetService(BeanContextChild child, Object requestor, Class serviceClass, Object serviceSelector, BeanContextServiceRevokedListener bcsrl)
     Get a service instance on behalf of the specified child of this context, by calling the registered service provider, or by delegating to the parent context.
public  booleanhasService(Class serviceClass)
     Checks whether a service is registed in this context or the parent context.
public  voidinitialize()
    
protected  voidinitializeBeanContextResources()
     Called after the parent context is updated.
protected  voidreleaseBeanContextResources()
     Called before the parent context is updated.
public  voidreleaseService(BeanContextChild child, Object requestor, Object service)
     Release a service which has been requested previously.
public  voidremoveBeanContextServicesListener(BeanContextServicesListener listener)
    
public  voidrevokeService(Class serviceClass, BeanContextServiceProvider serviceProvider, boolean revokeCurrentServicesNow)
     Revokes a service in this bean context.

The given service provider is unregistered and a BeanContextServiceRevokedEvent is fired.

public  voidserviceAvailable(BeanContextServiceAvailableEvent event)
     Notify all listeners and children that implements BeanContextServices of the event.
public  voidserviceRevoked(BeanContextServiceRevokedEvent event)
     Notify all listeners and children that implements BeanContextServices of the event.

Field Detail
bcsListeners
protected transient ArrayList bcsListeners(Code)
A list of registered BeanContextServicesListeners. All access to this object should be synchronized on itself.



proxy
protected transient BCSSProxyServiceProvider proxy(Code)
A proxy service provider that delegates service requests to the parent context.



serialVersionUID
final static long serialVersionUID(Code)



serializable
protected transient int serializable(Code)
The number of serializable service providers currently registered.



services
protected transient HashMap services(Code)
A map of all registered services - key is service class, value is BCSSServiceProvider object. All access to this object should be synchronized on itself.




Constructor Detail
BeanContextServicesSupport
public BeanContextServicesSupport()(Code)
Constructs a standard BeanContextServicesSupport.



BeanContextServicesSupport
public BeanContextServicesSupport(BeanContextServices peer)(Code)
Constructs a BeanContextServicesSupport which is a delegate of the given peer.
Parameters:
  peer - the peer of this context



BeanContextServicesSupport
public BeanContextServicesSupport(BeanContextServices peer, Locale locale)(Code)
Constructs a BeanContextServicesSupport which is a delegate of the given peer.
Parameters:
  peer - the peer of this context
Parameters:
  locale - the locale of this context



BeanContextServicesSupport
public BeanContextServicesSupport(BeanContextServices peer, Locale locale, boolean designTime)(Code)
Constructs a BeanContextServicesSupport which is a delegate of the given peer.
Parameters:
  peer - the peer of this context
Parameters:
  locale - the locale of this context
Parameters:
  designTime - whether in design mode or not



BeanContextServicesSupport
public BeanContextServicesSupport(BeanContextServices peer, Locale locale, boolean designTime, boolean okToUseGui)(Code)
Constructs a BeanContextServicesSupport which is a delegate of the given peer.
Parameters:
  peer - the peer of this context
Parameters:
  locale - the locale of this context
Parameters:
  designTime - whether in design mode or not
Parameters:
  okToUseGui - whether GUI is usable or not




Method Detail
addBeanContextServicesListener
public void addBeanContextServicesListener(BeanContextServicesListener listener)(Code)



addService
public boolean addService(Class serviceClass, BeanContextServiceProvider provider)(Code)
Add a service to this context.

Delegate to addService(serviceClass, provider, true).


See Also:   java.beans.beancontext.BeanContextServices.addService(java.lang.Classjava.beans.beancontext.BeanContextServiceProvider)



addService
protected boolean addService(Class serviceClass, BeanContextServiceProvider provider, boolean fireEvent)(Code)
Add a service to this context.

If the service already exists in the context, simply return false. Otherwise, the service is added and event is fired if required.


Parameters:
  serviceClass - the service class
Parameters:
  provider - the provider of the service
Parameters:
  fireEvent - the flag indicating to fire event or not true if the service is added; or false if the context already hasthis service



bcsPreDeserializationHook
protected void bcsPreDeserializationHook(ObjectInputStream ois) throws IOException, ClassNotFoundException(Code)
Deserializes all serializable services and their providers before the children of this context is deserialized.

First a int is read, indicating the number of services to read. Then pairs of service class and service provider are read one by one.


See Also:   java.beans.beancontext.BeanContextSupport.bcsPreDeserializationHook(java.io.ObjectInputStream)



bcsPreSerializationHook
protected void bcsPreSerializationHook(ObjectOutputStream oos) throws IOException(Code)
Serializes all serializable services and their providers before the children of this context is serialized.

First a int is writtern, indicating the number of serializable services. Then pairs of service class and service provider are writtern one by one.


See Also:   java.beans.beancontext.BeanContextSupport.bcsPreSerializationHook(java.io.ObjectOutputStream)



childJustRemovedHook
protected void childJustRemovedHook(Object child, BCSChild bcsChild)(Code)
This method is called everytime a child is removed from this context.

The implementation releases all services requested by the child.


See Also:   java.beans.beancontext.BeanContextSupport.childJustRemovedHook(java.lang.Objectjava.beans.beancontext.BeanContextSupport.BCSChild)



createBCSChild
protected BCSChild createBCSChild(Object child, Object proxyPeer)(Code)
Creates a BCSSChild object to company the given child.
See Also:   java.beans.beancontext.BeanContextSupport.createBCSChild(java.lang.Objectjava.lang.Object)



createBCSSServiceProvider
protected BCSSServiceProvider createBCSSServiceProvider(Class serviceClass, BeanContextServiceProvider provider)(Code)
Creates a BCSSServiceProvider to company the given service.
Parameters:
  serviceClass - the service class
Parameters:
  provider - the service provider a BCSSServiceProvider to company the given service



fireServiceAdded
final protected void fireServiceAdded(Class serviceClass)(Code)
Fires a BeanContextServiceAvailableEvent to registered BeanContextServicesListeners.
Parameters:
  serviceClass - the service that has been added



fireServiceAdded
final protected void fireServiceAdded(BeanContextServiceAvailableEvent event)(Code)
Fires a BeanContextServiceAvailableEvent to registered BeanContextServicesListeners.
Parameters:
  event - the event



fireServiceRevoked
final protected void fireServiceRevoked(Class serviceClass, boolean revokeNow)(Code)
Fires a BeanContextServiceRevokedEvent to registered BeanContextServicesListeners.
Parameters:
  serviceClass - the service that has been revoked
Parameters:
  revokeNow - whether to terminate service immediately



fireServiceRevoked
final protected void fireServiceRevoked(BeanContextServiceRevokedEvent event)(Code)
Fires a BeanContextServiceRevokedEvent to registered BeanContextServicesListeners.
Parameters:
  event - the event



getBeanContextServicesPeer
public BeanContextServices getBeanContextServicesPeer()(Code)
Returns the peer of this context casted as BeanContextServices. the peer of this context casted asBeanContextServices



getChildBeanContextServicesListener
final protected static BeanContextServicesListener getChildBeanContextServicesListener(Object child)(Code)
Returns the given child casted to BeanContextServicesListener, or null if it does not implements the interface.
Parameters:
  child - a child the given child casted toBeanContextServicesListener, or null if it doesnot implements the interface



getCurrentServiceClasses
public Iterator getCurrentServiceClasses()(Code)
Returns an iterator of all registered service classes, with removed() disabled. an iterator of all registered service classes
See Also:   java.beans.beancontext.BeanContextServices.getCurrentServiceClasses



getCurrentServiceSelectors
public Iterator getCurrentServiceSelectors(Class serviceClass)(Code)
Returns the service selectors of the specified service. The iterator's remove() operation is disabled.
See Also:   java.beans.beancontext.BeanContextServices.getCurrentServiceSelectors(java.lang.Class)



getService
public Object getService(BeanContextChild child, Object requestor, Class serviceClass, Object serviceSelector, BeanContextServiceRevokedListener bcsrl) throws TooManyListenersException(Code)
Get a service instance on behalf of the specified child of this context, by calling the registered service provider, or by delegating to the parent context.
Parameters:
  child - the child that request service
Parameters:
  requestor - the requestor object
Parameters:
  serviceClass - the service class
Parameters:
  serviceSelector - the service selectors
Parameters:
  bcsrl - the BeanContextServiceRevokedListener a service instance on behalf of the specified child of thiscontext
throws:
  IllegalArgumentException - if child is not a child of this context
throws:
  TooManyListenersException -
See Also:   java.beans.beancontext.BeanContextServices.getService(java.beans.beancontext.BeanContextChildjava.lang.Objectjava.lang.Classjava.lang.Objectjava.beans.beancontext.BeanContextServiceRevokedListener)



hasService
public boolean hasService(Class serviceClass)(Code)
Checks whether a service is registed in this context or the parent context.
Parameters:
  serviceClass - the service class true if the service is registered
See Also:   java.beans.beancontext.BeanContextServices.hasService(java.lang.Class)



initialize
public void initialize()(Code)



initializeBeanContextResources
protected void initializeBeanContextResources()(Code)
Called after the parent context is updated. The implementation checks if the parent context is a BeanContextServices. If it is, then a BCSSProxyServiceProvider is created to delegate service requests to the parent context.
See Also:   java.beans.beancontext.BeanContextChildSupport.initializeBeanContextResources



releaseBeanContextResources
protected void releaseBeanContextResources()(Code)
Called before the parent context is updated. The implementation releases any service that is currently provided by the parent context.
See Also:   java.beans.beancontext.BeanContextChildSupport.releaseBeanContextResources



releaseService
public void releaseService(BeanContextChild child, Object requestor, Object service)(Code)
Release a service which has been requested previously.
Parameters:
  child - the child that request the service
Parameters:
  requestor - the requestor object
Parameters:
  service - the service instance
throws:
  IllegalArgumentException - if child is not a child of this context



removeBeanContextServicesListener
public void removeBeanContextServicesListener(BeanContextServicesListener listener)(Code)



revokeService
public void revokeService(Class serviceClass, BeanContextServiceProvider serviceProvider, boolean revokeCurrentServicesNow)(Code)
Revokes a service in this bean context.

The given service provider is unregistered and a BeanContextServiceRevokedEvent is fired. All registered service listeners and current service users get notified.


Parameters:
  serviceClass - the service class
Parameters:
  serviceProvider - the service provider
Parameters:
  revokeCurrentServicesNow - true if service should be terminated immediantly
See Also:   java.beans.beancontext.BeanContextServices.revokeService(java.lang.Classjava.beans.beancontext.BeanContextServiceProviderboolean)



serviceAvailable
public void serviceAvailable(BeanContextServiceAvailableEvent event)(Code)
Notify all listeners and children that implements BeanContextServices of the event.
See Also:   java.beans.beancontext.BeanContextServicesListener.serviceAvailable(java.beans.beancontext.BeanContextServiceAvailableEvent)



serviceRevoked
public void serviceRevoked(BeanContextServiceRevokedEvent event)(Code)
Notify all listeners and children that implements BeanContextServices of the event.
See Also:   java.beans.beancontext.BeanContextServiceRevokedListener.serviceRevoked(java.beans.beancontext.BeanContextServiceRevokedEvent)



Fields inherited from java.beans.beancontext.BeanContextSupport
protected transient ArrayList bcmListeners(Code)(Java Doc)
protected transient HashMap children(Code)(Java Doc)
protected boolean designTime(Code)(Java Doc)
protected Locale locale(Code)(Java Doc)
protected boolean okToUseGui(Code)(Java Doc)
final static long serialVersionUID(Code)(Java Doc)

Methods inherited from java.beans.beancontext.BeanContextSupport
public boolean add(Object child)(Code)(Java Doc)
public boolean addAll(Collection collection)(Code)(Java Doc)
public void addBeanContextMembershipListener(BeanContextMembershipListener listener)(Code)(Java Doc)
public boolean avoidingGui()(Code)(Java Doc)
protected Iterator bcsChildren()(Code)(Java Doc)
protected void bcsPreDeserializationHook(ObjectInputStream ois) throws IOException, ClassNotFoundException(Code)(Java Doc)
protected void bcsPreSerializationHook(ObjectOutputStream oos) throws IOException(Code)(Java Doc)
protected void childDeserializedHook(Object child, BCSChild bcsChild)(Code)(Java Doc)
protected void childJustAddedHook(Object child, BCSChild bcsChild)(Code)(Java Doc)
protected void childJustRemovedHook(Object child, BCSChild bcsChild)(Code)(Java Doc)
final protected static boolean classEquals(Class clz1, Class clz2)(Code)(Java Doc)
public void clear()(Code)(Java Doc)
public boolean contains(Object child)(Code)(Java Doc)
public boolean containsAll(Collection collection)(Code)(Java Doc)
public boolean containsKey(Object child)(Code)(Java Doc)
final protected Object[] copyChildren()(Code)(Java Doc)
protected BCSChild createBCSChild(Object child, Object proxyPeer)(Code)(Java Doc)
final protected void deserialize(ObjectInputStream ois, Collection collection) throws IOException, ClassNotFoundException(Code)(Java Doc)
public void dontUseGui()(Code)(Java Doc)
final protected void fireChildrenAdded(BeanContextMembershipEvent event)(Code)(Java Doc)
final protected void fireChildrenRemoved(BeanContextMembershipEvent event)(Code)(Java Doc)
public BeanContext getBeanContextPeer()(Code)(Java Doc)
final protected static BeanContextChild getChildBeanContextChild(Object child)(Code)(Java Doc)
final protected static BeanContextMembershipListener getChildBeanContextMembershipListener(Object child)(Code)(Java Doc)
final protected static PropertyChangeListener getChildPropertyChangeListener(Object child)(Code)(Java Doc)
final protected static Serializable getChildSerializable(Object child)(Code)(Java Doc)
final protected static VetoableChangeListener getChildVetoableChangeListener(Object child)(Code)(Java Doc)
final protected static Visibility getChildVisibility(Object child)(Code)(Java Doc)
public Locale getLocale()(Code)(Java Doc)
public URL getResource(String resourceName, BeanContextChild child)(Code)(Java Doc)
public InputStream getResourceAsStream(String resourceName, BeanContextChild child) throws IllegalArgumentException(Code)(Java Doc)
protected void initialize()(Code)(Java Doc)
public Object instantiateChild(String beanName) throws IOException, ClassNotFoundException(Code)(Java Doc)
public boolean isDesignTime()(Code)(Java Doc)
public boolean isEmpty()(Code)(Java Doc)
public boolean isSerializing()(Code)(Java Doc)
public Iterator iterator()(Code)(Java Doc)
public boolean needsGui()(Code)(Java Doc)
public void okToUseGui()(Code)(Java Doc)
public void propertyChange(PropertyChangeEvent event)(Code)(Java Doc)
final public void readChildren(ObjectInputStream ois) throws IOException, ClassNotFoundException(Code)(Java Doc)
public boolean remove(Object child)(Code)(Java Doc)
protected boolean remove(Object child, boolean setChildBC)(Code)(Java Doc)
public boolean removeAll(Collection collection)(Code)(Java Doc)
public void removeBeanContextMembershipListener(BeanContextMembershipListener listener)(Code)(Java Doc)
public boolean retainAll(Collection collection)(Code)(Java Doc)
final protected void serialize(ObjectOutputStream oos, Collection collection) throws IOException(Code)(Java Doc)
public void setDesignTime(boolean designTime)(Code)(Java Doc)
public void setLocale(Locale newLocale) throws PropertyVetoException(Code)(Java Doc)
public int size()(Code)(Java Doc)
public Object[] toArray()(Code)(Java Doc)
public Object[] toArray(Object[] array)(Code)(Java Doc)
protected boolean validatePendingAdd(Object child)(Code)(Java Doc)
protected boolean validatePendingRemove(Object child)(Code)(Java Doc)
public void vetoableChange(PropertyChangeEvent pce) throws PropertyVetoException(Code)(Java Doc)
final public void writeChildren(ObjectOutputStream oos) throws IOException(Code)(Java Doc)

Fields inherited from java.beans.beancontext.BeanContextChildSupport
final static String BEAN_CONTEXT(Code)(Java Doc)
protected transient BeanContext beanContext(Code)(Java Doc)
public BeanContextChild beanContextChildPeer(Code)(Java Doc)
protected PropertyChangeSupport pcSupport(Code)(Java Doc)
protected transient boolean rejectedSetBCOnce(Code)(Java Doc)
protected VetoableChangeSupport vcSupport(Code)(Java Doc)

Methods inherited from java.beans.beancontext.BeanContextChildSupport
public void addPropertyChangeListener(String name, PropertyChangeListener pcl)(Code)(Java Doc)
public void addVetoableChangeListener(String name, VetoableChangeListener vcl)(Code)(Java Doc)
public void firePropertyChange(String name, Object oldValue, Object newValue)(Code)(Java Doc)
public void fireVetoableChange(String name, Object oldValue, Object newValue) throws PropertyVetoException(Code)(Java Doc)
public synchronized BeanContext getBeanContext()(Code)(Java Doc)
public BeanContextChild getBeanContextChildPeer()(Code)(Java Doc)
protected void initializeBeanContextResources()(Code)(Java Doc)
public boolean isDelegated()(Code)(Java Doc)
protected void releaseBeanContextResources()(Code)(Java Doc)
public void removePropertyChangeListener(String name, PropertyChangeListener pcl)(Code)(Java Doc)
public void removeVetoableChangeListener(String name, VetoableChangeListener vcl)(Code)(Java Doc)
public void serviceAvailable(BeanContextServiceAvailableEvent bcsae)(Code)(Java Doc)
public void serviceRevoked(BeanContextServiceRevokedEvent bcsre)(Code)(Java Doc)
public synchronized void setBeanContext(BeanContext bc) throws PropertyVetoException(Code)(Java Doc)
public boolean validatePendingSetBeanContext(BeanContext newValue)(Code)(Java Doc)

Methods inherited from java.lang.Object
protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object object)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final public Class<? extends Object> getClass()(Code)(Java Doc)
public int hashCode()(Code)(Java Doc)
final public void notify()(Code)(Java Doc)
final public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final public void wait(long millis, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait(long millis) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.