View Javadoc
1   package io.guixer.tools.dom;
2   
3   import javax.annotation.Nullable;
4   
5   public interface DomElement {
6   
7   	String getTagName();
8   
9   	@Nullable
10  	String getAttribute(
11  		String attributeName
12  	);
13  
14  	@Nullable
15  	String getText();
16  }