本文整理匯總了Java中org.apache.wicket.markup.html.list.ListItem.getDefaultModelObject方法的典型用法代碼示例。如果您正苦於以下問題:Java ListItem.getDefaultModelObject方法的具體用法?Java ListItem.getDefaultModelObject怎麽用?Java ListItem.getDefaultModelObject使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類org.apache.wicket.markup.html.list.ListItem
的用法示例。
在下文中一共展示了ListItem.getDefaultModelObject方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: getSortValue
import org.apache.wicket.markup.html.list.ListItem; //導入方法依賴的package包/類
@Override
protected String getSortValue(ListItem item) {
Object modelObject = item.getDefaultModelObject();
/**
* Implement a special sorting order if the list items are repo descriptors
*/
if (modelObject instanceof LocalCacheRepoDescriptor) {
return "3";
} else if (modelObject instanceof LocalRepoDescriptor) {
return "1";
} else if (modelObject instanceof HttpRepoDescriptor) {
return "2";
} else if (modelObject instanceof VirtualRepoDescriptor) {
return "4";
}
return super.getSortValue(item);
}
示例2: getDndValue
import org.apache.wicket.markup.html.list.ListItem; //導入方法依賴的package包/類
@Override
protected String getDndValue(ListItem item) {
PermissionTargetCreateUpdatePanel.RepoKeysData repoKeysData = parent.getRepoKeysData();
boolean anyLocal = repoKeysData.isAnyLocalRepository();
boolean anyRemote = repoKeysData.isAnyRemoteRepository();
RealRepoDescriptor repo = (RealRepoDescriptor) item.getDefaultModelObject();
boolean local = anyLocal && repo.isLocal();
boolean remote = anyRemote && !repo.isLocal();
if (local || remote) {
item.add(new CssClass("disabled"));
return getMarkupId() + "-targetOnly";
}
return getMarkupId();
}
示例3: populateItem
import org.apache.wicket.markup.html.list.ListItem; //導入方法依賴的package包/類
@SuppressWarnings({"unchecked"})
protected void populateItem(ListItem item) {
T itemObject = (T) item.getDefaultModelObject();
List<T> choices = (List<T>) choicesModel.getObject();
int index = choices.indexOf(itemObject);
item.add(new AttributeModifier("idx", index));
}
示例4: populateItem
import org.apache.wicket.markup.html.list.ListItem; //導入方法依賴的package包/類
@Override
protected void populateItem(ListItem item) {
File file = (File) item.getDefaultModelObject();
item.add(new FileLink("fileNameLabel", file));
item.add(new AttributeModifier("class", file.isDirectory() ? "folder" : "file"));
}