/**
  * This class is part of project that implements Aspectual Components
  *
  * Author: Predrag Petkovic, predrag@ccs.neu.edu
  *         Northeastern University
  *
  */
package edu.neu.ccs.aspects;

public interface Component {
  
  public void initComponent(ConnectorInterface connector);

}