本文整理匯總了Java中org.apache.wicket.model.PropertyModel.of方法的典型用法代碼示例。如果您正苦於以下問題:Java PropertyModel.of方法的具體用法?Java PropertyModel.of怎麽用?Java PropertyModel.of使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類org.apache.wicket.model.PropertyModel
的用法示例。
在下文中一共展示了PropertyModel.of方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: addInstancesMenuMenu
import org.apache.wicket.model.PropertyModel; //導入方法依賴的package包/類
protected Component addInstancesMenuMenu() {
IModel<String> instanceName = PropertyModel.of(currentInstance, "name");
DropDownButton instancesMenu = new NavbarDropDownButton(instanceName) {
/**
*
*/
private static final long serialVersionUID = 1L;
@Override
protected List<AbstractLink> newSubMenuButtons(String buttonMarkupId) {
List<NutchInstance> instances = instanceService.getInstances();
List<AbstractLink> subMenu = Lists.newArrayList();
for (NutchInstance instance : instances) {
subMenu.add(new Link<NutchInstance>(buttonMarkupId, Model
.of(instance)) {
/**
*
*/
private static final long serialVersionUID = 1L;
@Override
public void onClick() {
currentInstance.setObject(getModelObject());
setResponsePage(DashboardPage.class);
}
}.setBody(Model.of(instance.getName())));
}
return subMenu;
}
}.setIconType(FontAwesomeIconType.gears);
return instancesMenu;
}