當前位置: 首頁>>代碼示例>>Java>>正文


Java PropertyValue.setSource方法代碼示例

本文整理匯總了Java中org.springframework.beans.PropertyValue.setSource方法的典型用法代碼示例。如果您正苦於以下問題:Java PropertyValue.setSource方法的具體用法?Java PropertyValue.setSource怎麽用?Java PropertyValue.setSource使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在org.springframework.beans.PropertyValue的用法示例。


在下文中一共展示了PropertyValue.setSource方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: parsePropertyElement

import org.springframework.beans.PropertyValue; //導入方法依賴的package包/類
private void parsePropertyElement(Element ele, BeanDefinition bd) {
	String propertyName = ele.getAttribute(BeanDefinitionParserDelegate.NAME_ATTRIBUTE);
	if (!StringUtils.hasLength(propertyName)) {
		error("Tag 'property' must have a 'name' attribute", ele);
		return;
	}
	this.parseState.push(new PropertyEntry(propertyName));
	try {
		if (bd.getPropertyValues().contains(propertyName)) {
			error("Multiple 'property' definitions for property '" + propertyName + "'", ele);
			return;
		}
		Object val = parsePropertyValue(ele, bd, propertyName);
		PropertyValue pv = new PropertyValue(propertyName, val);
		pv.setSource(parserContext.extractSource(ele));
		bd.getPropertyValues().addPropertyValue(pv);
	} finally {
		this.parseState.pop();
	}
}
 
開發者ID:eclipse,項目名稱:gemini.blueprint,代碼行數:21,代碼來源:BlueprintParser.java

示例2: parsePropertyElement

import org.springframework.beans.PropertyValue; //導入方法依賴的package包/類
/**
 * Parse a property element.
 */
public void parsePropertyElement(Element ele, BeanDefinition bd) {
	String propertyName = ele.getAttribute(NAME_ATTRIBUTE);
	if (!StringUtils.hasLength(propertyName)) {
		error("Tag 'property' must have a 'name' attribute", ele);
		return;
	}
	this.parseState.push(new PropertyEntry(propertyName));
	try {
		if (bd.getPropertyValues().contains(propertyName)) {
			error("Multiple 'property' definitions for property '" + propertyName + "'", ele);
			return;
		}
		Object val = parsePropertyValue(ele, bd, propertyName);
		PropertyValue pv = new PropertyValue(propertyName, val);
		parseMetaElements(ele, pv);
		pv.setSource(extractSource(ele));
		bd.getPropertyValues().addPropertyValue(pv);
	}
	finally {
		this.parseState.pop();
	}
}
 
開發者ID:lamsfoundation,項目名稱:lams,代碼行數:26,代碼來源:BeanDefinitionParserDelegate.java

示例3: doParse

import org.springframework.beans.PropertyValue; //導入方法依賴的package包/類
@Override
protected void doParse(Element element, ParserContext pc,
        BeanDefinitionBuilder bean) {
    if(element.getLocalName().toLowerCase().contains("text")) {
        element.setAttribute(ID_ATTRIBUTE, KaWebSocketBean.TEXT_PROTOCOLS_CONFIG_ID);
    } else {
        element.setAttribute(ID_ATTRIBUTE, KaWebSocketBean.BINARY_PROTOCOLS_CONFIG_ID);
    }
    bean.setLazyInit(false);
    String ref = element.getAttribute("defaultProtocolRef");
    if(ref != null && !ref.isEmpty()) {
        bean.addPropertyReference("defaultProtocol", ref);
    }
    ManagedMap<String, RuntimeBeanReference> protocols = getProtocols(element);
    
    if(!protocols.isEmpty()) {
        MutablePropertyValues props =  bean.getBeanDefinition().getPropertyValues();
        PropertyValue value = props.getPropertyValue("protocolHandlers");
        if (value == null) {            
            props.addPropertyValue("protocolHandlers", protocols);
        } else {
           value.setSource(protocols);
        }
    }
    
   
}
 
開發者ID:wigforss,項目名稱:Ka-Websocket,代碼行數:28,代碼來源:ProtocolsBeanDefinitionParser.java


注:本文中的org.springframework.beans.PropertyValue.setSource方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。