1 package org.ocltf.model; 2 3 import java.util.Collection; 4 5 6 /*** 7 * Specifies a "facade" for an underlying association. 8 * 9 * @author Chad Brandon 10 */ 11 public interface AssociationFacade extends ElementFacade { 12 13 /*** 14 * Gets the AssociationEndFacades which provide the connections between 15 * the underlying association 16 * @return Collection 17 */ 18 public Collection getConnections(); 19 20 }