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


Java KeyNamePair.EMPTY屬性代碼示例

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


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

示例1: asClientKeyNamePair

public KeyNamePair asClientKeyNamePair()
{
	if (this == ANY)
	{
		return KeyNamePair.EMPTY;
	}
	return new KeyNamePair(getAD_Client_ID(), getClientName());
}
 
開發者ID:metasfresh,項目名稱:metasfresh,代碼行數:8,代碼來源:OrgResource.java

示例2: asOrgKeyNamePair

public KeyNamePair asOrgKeyNamePair()
{
	if (this == ANY)
	{
		return KeyNamePair.EMPTY;
	}
	return new KeyNamePair(getAD_Org_ID(), getOrgName());
}
 
開發者ID:metasfresh,項目名稱:metasfresh,代碼行數:8,代碼來源:OrgResource.java

示例3: getData

/**
 * Return data as Array containing Value/KeyNamePair
 *
 * @param mandatory if not mandatory, an additional empty value is inserted
 * @param onlyValidated only validated
 * @param onlyActive only active
 * @param temporary force load for temporary display
 * @return list
 */
@Override
public List<Object> getData(boolean mandatory, boolean onlyValidated, boolean onlyActive, boolean temporary)
{
	// create list
	final ILookupData data = getData(onlyValidated, true); // loadParent=true

	final List<Object> list = new ArrayList<Object>(data.getValues());

	// Remove inactive values
	if (onlyActive && data.hasInactiveValues())
	{
		for (final Iterator<Object> it = list.iterator(); it.hasNext();)
		{
			final Object o = it.next();
			if (o != null)
			{
				String s = o.toString();
				if (s.startsWith(INACTIVE_S) && s.endsWith(INACTIVE_E))
				{
					it.remove();
				}
			}
		}
	}

	// Add Optional (empty) selection
	if (!mandatory)
	{
		final NamePair emptyItem;
		if (m_info.getKeyColumnFQ() != null && isNumbericKey())
		{
			emptyItem = KeyNamePair.EMPTY;
		}
		else
		{
			emptyItem = ValueNamePair.EMPTY;
		}
		list.add(0, emptyItem);
	}

	return list;
}
 
開發者ID:metasfresh,項目名稱:metasfresh,代碼行數:51,代碼來源:MLookup.java


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