本文整理了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
暂无
代码示例来源: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;
}
内容来源于网络,如有侵权,请联系作者删除!