/************************************************************************************** * Copyright (c) Jonas Bon�r, Alexandre Vasseur. All rights reserved. * * http://aspectwerkz.codehaus.org * * ---------------------------------------------------------------------------------- * * The software in this package is published under the terms of the LGPL license * * a copy of which has been included with this distribution in the license.txt file. * **************************************************************************************/ package test.expression; /** * Target test class for annotations unit. * * @author <a href="mailto:the_mindstorm@evolva.ro">Alex Popescu</a> */ public class AnnotationTarget { /** * @test.expression.IService */ public static class ClassLevelAnnotation { /** * @test.expression.IConstructor */ public ClassLevelAnnotation() { } /** * @test.expression.IAsynchronous */ public void innerMethodAsynch() { } /** * @test.expression.IPersistable */ Object m_innerField; } /** * @test.expression.IAsynchronous */ public void methodOneAsynch() { } /** * @test.expression.IConstructor */ public AnnotationTarget() { } /** * @test.expression.IPersistable */ private Object m_annotatedField; }