01: package test.advisetostringbug;
02:
03: /**
04: * ***********************************************************************************
05: * Copyright (c) Jonas BonŽr, Alexandre Vasseur. All rights reserved. *
06: * http://aspectwerkz.codehaus.org *
07: * ---------------------------------------------------------------------------------- *
08: * The software in this package is published under the terms of the LGPL license *
09: * a copy of which has been included with this distribution in the license.txt file. *
10: * ************************************************************************************
11: */
12: public interface B {
13: void toString(boolean b, String s);
14: }
|