01: /**************************************************************************************
02: * Copyright (c) Jonas BonŽr, Alexandre Vasseur. All rights reserved. *
03: * http://aspectwerkz.codehaus.org *
04: * ---------------------------------------------------------------------------------- *
05: * The software in this package is published under the terms of the LGPL license *
06: * a copy of which has been included with this distribution in the license.txt file. *
07: **************************************************************************************/package org.codehaus.aspectwerkz.transform.inlining.deployer;
08:
09: /**
10: * Interface that all "redefiner" implementations should implement.
11: * <p/>
12: * Redefines all classes at all points defined by the <code>ChangeSet</code> passed to the
13: * <code>redefine</code> method.
14: *
15: * @author <a href="mailto:jboner@codehaus.org">Jonas BonŽr </a>
16: */
17: public interface Redefiner {
18:
19: /**
20: * Redefines all classes affected by the change set according to the rules defined in the change set.
21: *
22: * @param changeSet
23: */
24: void redefine(ChangeSet changeSet);
25: }
|