Example usage for org.springframework.beans.factory.parsing ComponentDefinition getName

List of usage examples for org.springframework.beans.factory.parsing ComponentDefinition getName

Introduction

In this page you can find the example usage for org.springframework.beans.factory.parsing ComponentDefinition getName.

Prototype

String getName();

Source Link

Document

Get the user-visible name of this ComponentDefinition .

Usage

From source file:test.parsing.CollectingReaderEventListener.java

public void componentRegistered(ComponentDefinition componentDefinition) {
    this.componentDefinitions.put(componentDefinition.getName(), componentDefinition);
}