View Javadoc

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:49:51 PM
8    */
9   public interface OperationAggregator {
10      void addOperation(String operationName);
11  
12      public Iterator operations();
13  }