Example usage for org.springframework.beans.factory.parsing ParseState ParseState

List of usage examples for org.springframework.beans.factory.parsing ParseState ParseState

Introduction

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

Prototype

public ParseState() 

Source Link

Document

Create a new ParseState with an empty LinkedList .

Usage

From source file:org.eclipse.gemini.blueprint.blueprint.config.internal.BlueprintParser.java

public BlueprintParser(ParseState parseState, Collection<String> usedNames) {
    this.parseState = (parseState != null ? parseState : new ParseState());
    this.usedNames = (usedNames != null ? usedNames : new LinkedHashSet<String>());
}