org.apache.wicket.markup.html.form.Button.setVersioned()方法的使用及代码示例

x33g5p2x  于2022-01-16 转载在 其他  
字(3.6k)|赞(0)|评价(0)|浏览(103)

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

Button.setVersioned介绍

暂无

代码示例

代码示例来源:origin: org.apache.wicket/com.springsource.org.apache.wicket

/**
 * Constructor without a model. Buttons without models leave the markup attribute
 * "value". Provide a model if you want to set the button's label dynamically.
 * 
 * @see org.apache.wicket.Component#Component(String)
 */
public Button(String id)
{
  super(id);
  setVersioned(true);
  setOutputMarkupId(true);
}

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

/**
 * Constructor without a model. Buttons without models leave the markup attribute
 * "value". Provide a model if you want to set the button's label dynamically.
 * 
 * @see org.apache.wicket.Component#Component(String)
 */
public Button(String id)
{
  super(id);
  setVersioned(true);
  setOutputMarkupId(true);
}

代码示例来源:origin: org.apache.wicket/com.springsource.org.apache.wicket

/**
 * Constructor taking an model for rendering the 'label' of the button (the value attribute of
 * the input/button tag). Use a {@link org.apache.wicket.model.StringResourceModel} for a
 * localized value.
 * 
 * @param id
 *            Component id
 * @param model
 *            The model property is used to set the "value" attribute. It will thus be
 *            the label of the button that shows up for end users. If you want the attribute to
 *            keep it's markup attribute value, don't provide a model, or let it return an empty
 *            string.
 */
public Button(final String id, final IModel model)
{
  super(id, model);
  setVersioned(true);
  setOutputMarkupId(true);
}

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

/**
 * Constructor taking an model for rendering the 'label' of the button (the value attribute of
 * the input/button tag). Use a {@link org.apache.wicket.model.StringResourceModel} for a
 * localized value.
 * 
 * @param id
 *            Component id
 * @param model
 *            The model property is used to set the "value" attribute. It will thus be
 *            the label of the button that shows up for end users. If you want the attribute to
 *            keep it's markup attribute value, don't provide a model, or let it return an empty
 *            string.
 */
public Button(final String id, final IModel<String> model)
{
  super(id, model);
  setVersioned(true);
  setOutputMarkupId(true);
}

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

/**
 * Constructor taking an model for rendering the 'label' of the button (the value attribute of
 * the input/button tag). Use a {@link org.apache.wicket.model.StringResourceModel} for a
 * localized value.
 * 
 * @param id
 *            Component id
 * @param model
 *            The model property is used to set the &quot;value&quot; attribute. It will thus be
 *            the label of the button that shows up for end users. If you want the attribute to
 *            keep it's markup attribute value, don't provide a model, or let it return an empty
 *            string.
 */
public Button(final String id, final IModel<String> model)
{
  super(id, model);
  setVersioned(true);
  setOutputMarkupId(true);
  // don't double encode the value. it is encoded by ComponentTag.writeOutput()
  setEscapeModelStrings(false);
}

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

/**
 * Constructor taking an model for rendering the 'label' of the button (the value attribute of
 * the input/button tag). Use a {@link org.apache.wicket.model.StringResourceModel} for a
 * localized value.
 * 
 * @param id
 *            Component id
 * @param model
 *            The model property is used to set the &quot;value&quot; attribute. It will thus be
 *            the label of the button that shows up for end users. If you want the attribute to
 *            keep it's markup attribute value, don't provide a model, or let it return an empty
 *            string.
 */
public Button(final String id, final IModel<String> model)
{
  super(id, model);
  setVersioned(true);
  setOutputMarkupId(true);
  // don't double encode the value. it is encoded by ComponentTag.writeOutput()
  setEscapeModelStrings(false);
}

相关文章