List of usage examples for java.beans.beancontext BeanContextServicesSupport add
public boolean add(Object targetChild)
From source file:DocumentTester.java
public static void main(String[] args) { BeanContextServicesSupport context = new BeanContextServicesSupport(); // a // bean//ww w. ja v a2 s . c o m // context DocumentBean doc1 = new DocumentBean("Test.txt"); context.add(doc1); context.addBeanContextServicesListener(doc1); // listen for new services WordCountServiceProvider provider = new WordCountServiceProvider(); context.addService(WordCount.class, provider); // add the service to the // context }