Example usage for java.beans.beancontext BeanContextServicesSupport add

List of usage examples for java.beans.beancontext BeanContextServicesSupport add

Introduction

In this page you can find the example usage for java.beans.beancontext BeanContextServicesSupport add.

Prototype

public boolean add(Object targetChild) 

Source Link

Document

Adds/nests a child within this BeanContext .

Usage

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
}