Example usage for java.beans.beancontext BeanContextServicesSupport addService

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

Introduction

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

Prototype


public boolean addService(Class<?> serviceClass, BeanContextServiceProvider bcsp) 

Source Link

Document

add a service

Usage

From source file:DocumentTester.java

public static void main(String[] args) {
    BeanContextServicesSupport context = new BeanContextServicesSupport(); // a
    // bean// w ww. ja  v a  2 s  . com
    // 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
}