コード例 #1
0
ファイル: Element.java プロジェクト: asiachrispy/achris
 /**
  * Get the name of the tag for this element. E.g. {@code div}
  *
  * @return the tag name
  */
 public String tagName() {
   return tag.getName();
 }
コード例 #2
0
ファイル: Element.java プロジェクト: asiachrispy/achris
 @Override
 public String nodeName() {
   return tag.getName();
 }