1 package net.sf.quarrel.uml; 2 3 import java.util.Iterator; 4 5 /*** 6 * Created By: Brian Surratt 7 * Created On: Mar 26, 2006 10:57:06 PM 8 */ 9 public interface AttributeAggregator { 10 Iterator attributes(); 11 12 void addAttribute(String attributeName); 13 }