1 /** 2 * *********************************************************************************** 3 * Copyright (c) Jonas BonŽr, Alexandre Vasseur. All rights reserved. * 4 * http://aspectwerkz.codehaus.org * 5 * ---------------------------------------------------------------------------------- * 6 * The software in this package is published under the terms of the LGPL license * 7 * a copy of which has been included with this distribution in the license.txt file. * 8 * ************************************************************************************ 9 */ 10 package test.advisetostringbug; 11 12 public class Aspect { 13 14 /** 15 * @Mixin within(test.advisetostringbug.A+) 16 */ 17 public static class BImpl implements B { 18 public void toString(boolean b, String s) { 19 20 } 21 22 } 23 } 24