org.apache.wicket.markup.html.list.ListView.setDefaultModel()方法的使用及代码示例

x33g5p2x  于2022-01-23 转载在 其他  
字(1.9k)|赞(0)|评价(0)|浏览(110)

本文整理了Java中org.apache.wicket.markup.html.list.ListView.setDefaultModel()方法的一些代码示例,展示了ListView.setDefaultModel()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ListView.setDefaultModel()方法的具体详情如下:
包路径:org.apache.wicket.markup.html.list.ListView
类名称:ListView
方法名:setDefaultModel

ListView.setDefaultModel介绍

暂无

代码示例

代码示例来源:origin: org.apache.wicket/wicket-core

/**
 * Sets model
 * 
 * @param model
 */
public final void setModel(IModel<? extends List<T>> model)
{
  setDefaultModel(model);
}

代码示例来源:origin: apache/wicket

/**
 * Sets model
 * 
 * @param model
 */
public final void setModel(IModel<? extends List<T>> model)
{
  setDefaultModel(model);
}

代码示例来源:origin: org.ops4j.pax.wicket/pax-wicket-service

/**
 * Sets model
 * 
 * @param model
 */
public final void setModel(IModel<? extends List<T>> model)
{
  setDefaultModel(model);
}

代码示例来源:origin: apache/wicket

/**
 * Sets the model as the provided list and removes all children, so that the next render will be
 * using the contents of the model.
 * 
 * @param list
 *            The list for the new model. The list must implement {@link Serializable}.
 * @return This for chaining
 */
public ListView<T> setList(List<T> list)
{
  setDefaultModel(Model.ofList(list));
  return this;
}

代码示例来源:origin: org.apache.wicket/wicket-core

/**
 * Sets the model as the provided list and removes all children, so that the next render will be
 * using the contents of the model.
 * 
 * @param list
 *            The list for the new model. The list must implement {@link Serializable}.
 * @return This for chaining
 */
public ListView<T> setList(List<T> list)
{
  setDefaultModel(Model.ofList(list));
  return this;
}

代码示例来源:origin: org.ops4j.pax.wicket/pax-wicket-service

/**
 * Sets the model as the provided list and removes all children, so that the next render will be
 * using the contents of the model.
 * 
 * @param list
 *            The list for the new model. The list must implement {@link Serializable}.
 * @return This for chaining
 */
public ListView<T> setList(List<? extends T> list)
{
  setDefaultModel(Model.ofList(list));
  return this;
}

相关文章