View Javadoc

1   package org.catacomb.interlish.structure;
2   
3   
4   public interface Element extends Named, Elemented, Attributed {
5   
6       boolean hasText();
7   
8       String getText();
9   
10      String serialize();
11  
12  }