Coverage Report - net.sf.jolene.html.IAttributes
 
Classes in this File Line Coverage Branch Coverage Complexity
IAttributes
N/A
N/A
1
 
 1  
 /*
 2  
  * Created on Dec 27, 2003
 3  
 */
 4  
 package net.sf.jolene.html;
 5  
 
 6  
 /**
 7  
  * @author Dan Howard
 8  
  */
 9  
 public interface IAttributes extends ICollection {
 10  
 
 11  
     String getAttribute(String key);
 12  
 
 13  
     boolean hasAttribute(String key);
 14  
 
 15  
 
 16  
     String removeAttribute(String key);
 17  
 
 18  
     String setAttribute(String key, String value);
 19  
 
 20  
 }