Example usage for org.springframework.beans.factory.support DefaultListableBeanFactory getClass

List of usage examples for org.springframework.beans.factory.support DefaultListableBeanFactory getClass

Introduction

In this page you can find the example usage for org.springframework.beans.factory.support DefaultListableBeanFactory getClass.

Prototype

@HotSpotIntrinsicCandidate
public final native Class<?> getClass();

Source Link

Document

Returns the runtime class of this Object .

Usage

From source file:com.sourceallies.beanoh.spring.wrapper.BeanohBeanFactoryMethodInterceptor.java

/**
 * Constructs a new proxy.//from  w  w w . j a va2 s  .c om
 * 
 * @param delegate
 *            the delegate that will be called when the proxy methods are
 *            invoked
 */
public BeanohBeanFactoryMethodInterceptor(DefaultListableBeanFactory delegate) {
    this.delegate = delegate;
    this.delegateClass = delegate.getClass();
    beanDefinitionMap = new HashMap<String, List<BeanDefinition>>();
}