diff options
author | aclement <aclement> | 2009-03-04 01:24:26 +0000 |
---|---|---|
committer | aclement <aclement> | 2009-03-04 01:24:26 +0000 |
commit | 90235ddf4653e0de745a2006f82f3eb09bc9495e (patch) | |
tree | c1a4d42ca81123f312fafb5a365b7ccead249c39 /tests | |
parent | 84e3fa9ff46c93841fc4234bdb44b323ffbe4ab8 (diff) | |
download | aspectj-90235ddf4653e0de745a2006f82f3eb09bc9495e.tar.gz aspectj-90235ddf4653e0de745a2006f82f3eb09bc9495e.zip |
declaremixin
Diffstat (limited to 'tests')
-rw-r--r-- | tests/src/org/aspectj/systemtest/ajc164/DeclareMixinTests.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/src/org/aspectj/systemtest/ajc164/DeclareMixinTests.java b/tests/src/org/aspectj/systemtest/ajc164/DeclareMixinTests.java index c7e26efa3..e18994cb0 100644 --- a/tests/src/org/aspectj/systemtest/ajc164/DeclareMixinTests.java +++ b/tests/src/org/aspectj/systemtest/ajc164/DeclareMixinTests.java @@ -21,7 +21,7 @@ import org.aspectj.testing.XMLBasedAjcTestCase; * In many ways the design is similar to DeclareParents now - so we have to plug in at the same points, but the code generation for * generating the delegate object and the choice of which interfaces (and methods within those) to mixin is different. * - * <h4>Design considerations:</h4><br> + * <h4>Design and test considerations:</h4><br> * <ul> * <li>model relationships * <li>incremental compilation @@ -31,6 +31,7 @@ import org.aspectj.testing.XMLBasedAjcTestCase; * <li>Clashing with existing methods * <li>varying parameter type on the factory method * <li>See CaseF - what if mixin target is not assignable to the parameter type? create cast? + * <li>Check the factory method has at most one parameter * </ul> * * @author Andy Clement |