Java 类org.w3c.dom.html2.HTMLTableCaptionElement 实例源码

项目:javify    文件:DomHTMLTableElement.java   
public void setCaption(HTMLTableCaptionElement caption)
{
  HTMLTableCaptionElement ref = getCaption();
  if (ref == null)
    {
      appendChild(caption);
    }
  else
    {
      replaceChild(caption, ref);
    }
}
项目:javify    文件:DomHTMLTableElement.java   
public HTMLElement createCaption()
{
  HTMLTableCaptionElement ref = getCaption();
  if (ref == null)
    {
      return (HTMLElement) getOwnerDocument().createElement("caption");
    }
  else
    {
      return ref;
    }
}
项目:javify    文件:DomHTMLTableElement.java   
public void deleteCaption()
{
  HTMLTableCaptionElement ref = getCaption();
  if (ref != null)
    {
      removeChild(ref);
    }
}
项目:jvm-stm    文件:DomHTMLTableElement.java   
public void setCaption(HTMLTableCaptionElement caption)
{
  HTMLTableCaptionElement ref = getCaption();
  if (ref == null)
    {
      appendChild(caption);
    }
  else
    {
      replaceChild(caption, ref);
    }
}
项目:jvm-stm    文件:DomHTMLTableElement.java   
public HTMLElement createCaption()
{
  HTMLTableCaptionElement ref = getCaption();
  if (ref == null)
    {
      return (HTMLElement) getOwnerDocument().createElement("caption");
    }
  else
    {
      return ref;
    }
}
项目:jvm-stm    文件:DomHTMLTableElement.java   
public void deleteCaption()
{
  HTMLTableCaptionElement ref = getCaption();
  if (ref != null)
    {
      removeChild(ref);
    }
}
项目:JamVM-PH    文件:DomHTMLTableElement.java   
public void setCaption(HTMLTableCaptionElement caption)
{
  HTMLTableCaptionElement ref = getCaption();
  if (ref == null)
    {
      appendChild(caption);
    }
  else
    {
      replaceChild(caption, ref);
    }
}
项目:JamVM-PH    文件:DomHTMLTableElement.java   
public HTMLElement createCaption()
{
  HTMLTableCaptionElement ref = getCaption();
  if (ref == null)
    {
      return (HTMLElement) getOwnerDocument().createElement("caption");
    }
  else
    {
      return ref;
    }
}
项目:JamVM-PH    文件:DomHTMLTableElement.java   
public void deleteCaption()
{
  HTMLTableCaptionElement ref = getCaption();
  if (ref != null)
    {
      removeChild(ref);
    }
}
项目:classpath    文件:DomHTMLTableElement.java   
public void setCaption(HTMLTableCaptionElement caption)
{
  HTMLTableCaptionElement ref = getCaption();
  if (ref == null)
    {
      appendChild(caption);
    }
  else
    {
      replaceChild(caption, ref);
    }
}
项目:classpath    文件:DomHTMLTableElement.java   
public HTMLElement createCaption()
{
  HTMLTableCaptionElement ref = getCaption();
  if (ref == null)
    {
      return (HTMLElement) getOwnerDocument().createElement("caption");
    }
  else
    {
      return ref;
    }
}
项目:classpath    文件:DomHTMLTableElement.java   
public void deleteCaption()
{
  HTMLTableCaptionElement ref = getCaption();
  if (ref != null)
    {
      removeChild(ref);
    }
}
项目:javify    文件:DomHTMLTableElement.java   
public HTMLTableCaptionElement getCaption()
{
  return (HTMLTableCaptionElement) getChildElement("caption");
}
项目:jvm-stm    文件:DomHTMLTableElement.java   
public HTMLTableCaptionElement getCaption()
{
  return (HTMLTableCaptionElement) getChildElement("caption");
}
项目:JamVM-PH    文件:DomHTMLTableElement.java   
public HTMLTableCaptionElement getCaption()
{
  return (HTMLTableCaptionElement) getChildElement("caption");
}
项目:classpath    文件:DomHTMLTableElement.java   
public HTMLTableCaptionElement getCaption()
{
  return (HTMLTableCaptionElement) getChildElement("caption");
}