Example usage for org.springframework.ide.eclipse.osgi.blueprint.internal BlueprintParser BlueprintParser

List of usage examples for org.springframework.ide.eclipse.osgi.blueprint.internal BlueprintParser BlueprintParser

Introduction

In this page you can find the example usage for org.springframework.ide.eclipse.osgi.blueprint.internal BlueprintParser BlueprintParser.

Prototype

private BlueprintParser(ParserContext parserContext) 

Source Link

Document

Constructs a new ComponentParser instance.

Usage

From source file:org.springframework.ide.eclipse.osgi.blueprint.internal.BlueprintParser.java

public static Object parsePropertySubElement(ParserContext parserContext, Element ele, BeanDefinition bd) {
    return new BlueprintParser(parserContext).parsePropertySubElement(ele, bd, null);
}

From source file:org.springframework.ide.eclipse.osgi.blueprint.internal.BlueprintParser.java

public static Map<?, ?> parsePropertyMapElement(ParserContext parserContext, Element ele, BeanDefinition bd) {
    return new BlueprintParser(parserContext).parseMapElement(ele, bd);
}

From source file:org.springframework.ide.eclipse.osgi.blueprint.internal.BlueprintParser.java

public static Set<?> parsePropertySetElement(ParserContext parserContext, Element ele, BeanDefinition bd) {
    return new BlueprintParser(parserContext).parseSetElement(ele, bd);
}