当前位置: 首页>>代码示例>>Java>>正文


Java ListItem.getDefaultModelObject方法代码示例

本文整理汇总了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);
}
 
开发者ID:alancnet,项目名称:artifactory,代码行数:19,代码来源:SortedRepoDragDropSelection.java

示例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();
}
 
开发者ID:alancnet,项目名称:artifactory,代码行数:16,代码来源:RepositoriesTabPanel.java

示例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));
}
 
开发者ID:alancnet,项目名称:artifactory,代码行数:8,代码来源:DragDropSelection.java

示例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"));

}
 
开发者ID:alancnet,项目名称:artifactory,代码行数:8,代码来源:FileBrowserPanel.java


注:本文中的org.apache.wicket.markup.html.list.ListItem.getDefaultModelObject方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。