View Javadoc

1   
2   package org.catacomb.interlish.structure;
3   
4   
5   import java.util.List;
6   
7   
8   public interface Attributed {
9   
10  
11      List<Attribute> getAttributes();
12  
13      Attribute[] getAttributeArray();
14  
15      String getAttribute(String name);
16  
17      boolean hasAttributes();
18  
19      boolean hasAttribute(String name);
20  
21  }