1 /* 2 * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved. 3 */ 4 5 package com.tc.aspectwerkz.definition.deployer; 6 7 /** 8 * TODO document class 9 * 10 * @author Jonas Bonér 11 */ 12 public interface AspectModule { 13 void deploy(AspectModuleDeployer deployer); 14 } 15