本文整理汇总了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"));
}