Browse Source

polish javadoc

tags/V1_9_2RC3
Andy Clement 5 years ago
parent
commit
432d4845cb
1 changed files with 12 additions and 12 deletions
  1. 12
    12
      runtime/src/org/aspectj/lang/Aspects14.java

+ 12
- 12
runtime/src/org/aspectj/lang/Aspects14.java View File

package org.aspectj.lang; package org.aspectj.lang;




import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method; import java.lang.reflect.Method;
import java.lang.reflect.Modifier; import java.lang.reflect.Modifier;
import java.lang.reflect.InvocationTargetException;


/** /**
* For users working on a level of Java prior to Java5, Aspects14 handles generic aspectOf methods when they * For users working on a level of Java prior to Java5, Aspects14 handles generic aspectOf methods when they
/** /**
* Returns the singleton aspect or the percflow / percflowbelow associated with the current thread * Returns the singleton aspect or the percflow / percflowbelow associated with the current thread
* *
* @param aspectClass
* @return
* @param aspectClass aspect class for which to discover the aspect instance
* @return an aspect instance
* @throws NoAspectBoundException if no such aspect * @throws NoAspectBoundException if no such aspect
*/ */
public static Object aspectOf(Class aspectClass) throws NoAspectBoundException { public static Object aspectOf(Class aspectClass) throws NoAspectBoundException {


/** /**
* Returns the perthis / pertarget aspect * Returns the perthis / pertarget aspect
* @param aspectClass
* @param perObject
* @return
* @param aspectClass aspect class for which to discover the aspect instance
* @param perObject object for which to discover the aspect instance
* @return an aspect instance
* @throws NoAspectBoundException if no such aspect, or no aspect bound * @throws NoAspectBoundException if no such aspect, or no aspect bound
*/ */
public static Object aspectOf(Class aspectClass, Object perObject) throws NoAspectBoundException { public static Object aspectOf(Class aspectClass, Object perObject) throws NoAspectBoundException {


/** /**
* Returns the pertypewithin aspect * Returns the pertypewithin aspect
* @param aspectClass
* @param aspectClass aspect class for which to discover the aspect instance
* @param perTypeWithin class * @param perTypeWithin class
* @return * @return
* @throws NoAspectBoundException if no such aspect, or no aspect bound * @throws NoAspectBoundException if no such aspect, or no aspect bound
/** /**
* Returns true if singleton aspect or percflow / percflowbelow aspect is bound * Returns true if singleton aspect or percflow / percflowbelow aspect is bound
* *
* @param aspectClass
* @param aspectClass aspect class for which to check the aspect instance
* @return * @return
* @throws NoAspectBoundException if not bound * @throws NoAspectBoundException if not bound
*/ */


/** /**
* Returns true if the perthis / pertarget aspect is bound * Returns true if the perthis / pertarget aspect is bound
* @param aspectClass
* @param aspectClass aspect class for which to check the aspect instance
* @param perObject * @param perObject
* @return
* @return true if aspect instance exists for the class/object combination
* @throws NoAspectBoundException if not bound * @throws NoAspectBoundException if not bound
*/ */
public static boolean hasAspect(Class aspectClass, Object perObject) throws NoAspectBoundException { public static boolean hasAspect(Class aspectClass, Object perObject) throws NoAspectBoundException {


/** /**
* Returns true if the pertypewithin aspect is bound * Returns true if the pertypewithin aspect is bound
* @param aspectClass
* @param aspectClass aspect class for which to check the aspect instance
* @param perTypeWithin class * @param perTypeWithin class
* @return
* @return true if aspect instance exists for this aspect class/pertypewithin class combination
* @throws NoAspectBoundException if not bound * @throws NoAspectBoundException if not bound
*/ */
public static boolean hasAspect(Class aspectClass, Class perTypeWithin) throws NoAspectBoundException { public static boolean hasAspect(Class aspectClass, Class perTypeWithin) throws NoAspectBoundException {

Loading…
Cancel
Save