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.aspect.management;
08:
09: /**
10: * Interface throught the runtime system can retrieve instance level aspects for a specific target instance.
11: * <p/>
12: * Should <b>NEVER</b> be implemented by the user, but is applied to target classes by the weaver.
13: *
14: * @author <a href="mailto:jboner@codehaus.org">Jonas BonŽr </a>
15: */
16: public interface HasInstanceLevelAspect {
17:
18: /**
19: * Returns the instance level aspect with a specific name.
20: *
21: * @param aspectClassName the class name of the aspect
22: * @param qualifiedAspectName the qualified name of the aspect
23: * @param containerClassName the aspect container class name
24: * @return the aspect instance
25: */
26: Object aw$getAspect(String aspectClassName,
27: String qualifiedAspectName, String containerClassName);
28: }
|