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

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

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

Button.getForm介绍

[英]Override to not throw exception if there is no parent form.
[中]重写以在没有父窗体时不引发异常。

代码示例

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

@Override
public Form<?> getForm()
{
  return mForm == null ? super.getForm() : mForm;
}

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

@Override
public Form<?> getForm()
{
  return mForm == null ? super.getForm() : mForm;
}

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

public Form getForm()
{
  return mForm == null ? super.getForm() : mForm;
}

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

/**
 * 
 * @see org.apache.wicket.markup.html.form.Button#getForm()
 */
@Override
public Form<?> getForm()
{
  return mForm == null ? super.getForm() : mForm;
}

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

/**
 * Returns the form if it was set in constructor, otherwise returns the form nearest in parent
 * hierarchy.
 * 
 * @see org.apache.wicket.markup.html.form.FormComponent#getForm()
 */
@Override
public Form<?> getForm()
{
  if (form != null)
  {
    return form;
  }
  else
  {
    return super.getForm();
  }
}

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

/**
 * Returns the form if it was set in constructor, otherwise returns the form nearest in parent
 * hierarchy.
 * 
 * @see org.apache.wicket.markup.html.form.FormComponent#getForm()
 */
@Override
public Form<?> getForm()
{
  if (form != null)
  {
    return form;
  }
  else
  {
    return super.getForm();
  }
}

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

/**
 * Returns the form if it was set in constructor, otherwise returns the form nearest in parent
 * hierarchy.
 * 
 * @see org.apache.wicket.markup.html.form.FormComponent#getForm()
 */
public Form getForm()
{
  if (form != null)
  {
    return form;
  }
  else
  {
    return super.getForm();
  }
}

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

/**
 * Returns the form if it was set in constructor, otherwise returns the form nearest in parent
 * hierarchy.
 * 
 * @see org.apache.wicket.markup.html.form.FormComponent#getForm()
 */
@Override
public Form<?> getForm()
{
  if (form != null)
  {
    return form;
  }
  else
  {
    return super.getForm();
  }
}

代码示例来源:origin: org.wicketstuff/wicketstuff-stateless

/**
 * Returns the form if it was set in constructor, otherwise returns the form nearest in parent
 * hierarchy.
 * 
 * @see org.apache.wicket.markup.html.form.FormComponent#getForm()
 */
@Override
public Form<?> getForm()
{
  if (form != null)
  {
    return form;
  }
  else
  {
    return super.getForm();
  }
}

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

/**
 * This method should be implemented by subclasses to provide behavior for the clear button.
 * 
 * @param button
 *            the 'clear' button
 * 
 */
@SuppressWarnings("unchecked")
protected void onClearSubmit(final Button button)
{
  Form<Object> form = (Form<Object>)button.getForm();
  form.setDefaultModelObject(WicketObjects.cloneObject(originalState));
}

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

/**
 * This method should be implemented by subclasses to provide behavior for the clear button.
 * 
 * @param button
 *            the 'clear' button
 * 
 */
@SuppressWarnings("unchecked")
protected void onClearSubmit(Button button)
{
  Form<Object> form = (Form<Object>)button.getForm();
  form.setDefaultModelObject(Objects.cloneModel(originalState));
}

相关文章