本文整理汇总了Java中org.kuali.rice.krad.keyvalues.KeyValuesFinderFactory类的典型用法代码示例。如果您正苦于以下问题:Java KeyValuesFinderFactory类的具体用法?Java KeyValuesFinderFactory怎么用?Java KeyValuesFinderFactory使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
KeyValuesFinderFactory类属于org.kuali.rice.krad.keyvalues包,在下文中一共展示了KeyValuesFinderFactory类的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: testPerformFinalizeWithNonStringFieldOptions
import org.kuali.rice.krad.keyvalues.KeyValuesFinderFactory; //导入依赖的package包/类
@Test
public void testPerformFinalizeWithNonStringFieldOptions() throws Exception {
// setup options finder
Map<String, String> map = new HashMap<String, String>();
map.put("testInteger", "1");
optionsFinder = KeyValuesFinderFactory.fromMap(map);
// setup preconditions (view status is final; bindinginfo return testInteger)
when(view.getViewStatus()).thenReturn(UifConstants.ViewStatus.FINAL);
when(bindingInfo.getBindingPath()).thenReturn("testInteger");
when(bindingInfo.clone()).thenReturn(bindingInfo);
// setup input field with binding info and readonly
final InputField testObj = new InputFieldBase();
testObj.setBindingInfo(bindingInfo);
testObj.setReadOnly(true);
testObj.setOptionsFinder(optionsFinder);
ViewLifecycle.encapsulateLifecycle(view, model, new ViewPostMetadata(), null, null, new Runnable(){
@Override
public void run() {
testObj.performFinalize(model, testObj);
}});
}
示例2: testPerformFinalizeWithNonStringFieldOptions
import org.kuali.rice.krad.keyvalues.KeyValuesFinderFactory; //导入依赖的package包/类
@Test
public void testPerformFinalizeWithNonStringFieldOptions() throws Exception {
// setup options finder
Map<String, String> map = new HashMap<String, String>();
map.put("testInteger", "1");
optionsFinder = KeyValuesFinderFactory.fromMap(map);
// setup preconditions (view status is final; bindinginfo return testInteger)
when(view.getViewStatus()).thenReturn(UifConstants.ViewStatus.FINAL);
when(bindingInfo.getBindingPath()).thenReturn("testInteger");
// setup input field with binding info and readonly
InputField testObj = new InputField();
testObj.setBindingInfo(bindingInfo);
testObj.setReadOnly(true);
testObj.setOptionsFinder(optionsFinder);
testObj.performFinalize(view, model, testObj);
}