org.apache.wicket.markup.parser.XmlTag.isMutable()方法的使用及代码示例

x33g5p2x  于2022-02-03 转载在 其他  
字(3.3k)|赞(0)|评价(0)|浏览(159)

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

XmlTag.isMutable介绍

[英]True if this tag is mutable, false otherwise.
[中]如果此标记是可变的,则为True,否则为false。

代码示例

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

/**
 * Gets this tag if it is already mutable, or a mutable copy of this tag if it is immutable.
 * 
 * @return This tag if it is already mutable, or a mutable copy of this tag if it is immutable.
 */
public ComponentTag mutable()
{
  if (xmlTag.isMutable())
  {
    return this;
  }
  else
  {
    ComponentTag tag = new ComponentTag(xmlTag.mutable());
    copyPropertiesTo(tag);
    return tag;
  }
}

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

/**
 * Gets this tag if it is already mutable, or a mutable copy of this tag if it is immutable.
 * 
 * @return This tag if it is already mutable, or a mutable copy of this tag if it is immutable.
 */
public ComponentTag mutable()
{
  if (xmlTag.isMutable())
  {
    return this;
  }
  else
  {
    ComponentTag tag = new ComponentTag(xmlTag.mutable());
    copyPropertiesTo(tag);
    return tag;
  }
}

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

/**
 * Gets this tag if it is already mutable, or a mutable copy of this tag if it is immutable.
 * 
 * @return This tag if it is already mutable, or a mutable copy of this tag if it is immutable.
 */
public ComponentTag mutable()
{
  if (xmlTag.isMutable())
  {
    return this;
  }
  else
  {
    final ComponentTag tag = new ComponentTag(xmlTag.mutable());
    copyPropertiesTo(tag);
    return tag;
  }
}

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

/**
 * Gets this tag if it is already mutable, or a mutable copy of this tag if it is immutable.
 * 
 * @return This tag if it is already mutable, or a mutable copy of this tag if it is immutable.
 */
public ComponentTag mutable()
{
  if (xmlTag.isMutable())
  {
    return this;
  }
  else
  {
    final ComponentTag tag = new ComponentTag(xmlTag.mutable());
    copyPropertiesTo(tag);
    return tag;
  }
}

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

/**
   * Gets this tag if it is already mutable, or a mutable copy of this tag if it is immutable.
   * 
   * @return This tag if it is already mutable, or a mutable copy of this tag if it is immutable.
   */
  @Override
  public ComponentTag mutable()
  {
    if (xmlTag.isMutable())
    {
      return this;
    }
    else
    {
      final WicketTag tag = new WicketTag(xmlTag.mutable());
      copyPropertiesTo(tag);

      return tag;
    }
  }
}

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

/**
   * Gets this tag if it is already mutable, or a mutable copy of this tag if it is immutable.
   * 
   * @return This tag if it is already mutable, or a mutable copy of this tag if it is immutable.
   */
  @Override
  public ComponentTag mutable()
  {
    if (xmlTag.isMutable())
    {
      return this;
    }
    else
    {
      final WicketTag tag = new WicketTag(xmlTag.mutable());
      copyPropertiesTo(tag);

      return tag;
    }
  }
}

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

/**
   * Gets this tag if it is already mutable, or a mutable copy of this tag if it is immutable.
   * 
   * @return This tag if it is already mutable, or a mutable copy of this tag if it is immutable.
   */
  public ComponentTag mutable()
  {
    if (xmlTag.isMutable())
    {
      return this;
    }
    else
    {
      final WicketTag tag = new WicketTag(xmlTag.mutable());
      tag.setId(getId());
      tag.setAutoComponentTag(isAutoComponentTag());
      return tag;
    }
  }
}

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

/**
   * Gets this tag if it is already mutable, or a mutable copy of this tag if it is immutable.
   * 
   * @return This tag if it is already mutable, or a mutable copy of this tag if it is immutable.
   */
  @Override
  public ComponentTag mutable()
  {
    if (xmlTag.isMutable())
    {
      return this;
    }
    else
    {
      final WicketTag tag = new WicketTag(xmlTag.mutable());
      tag.setId(getId());
      tag.setAutoComponentTag(isAutoComponentTag());
      return tag;
    }
  }
}

相关文章