diff options
author | Alexander Kriegisch <Alexander@Kriegisch.name> | 2024-02-01 17:11:38 +0700 |
---|---|---|
committer | Alexander Kriegisch <Alexander@Kriegisch.name> | 2024-02-01 17:11:38 +0700 |
commit | ecbe1338108eba5756669ac1b67e691a0f695282 (patch) | |
tree | 69ff54a1042e566a9d462ae6d76fe971d07a2110 /docs/progguide/examples.adoc | |
parent | 692480de746298286b570bcd8303773d02dfa257 (diff) | |
download | aspectj-ecbe1338108eba5756669ac1b67e691a0f695282.tar.gz aspectj-ecbe1338108eba5756669ac1b67e691a0f695282.zip |
Fix some javadoc links in ADOCs
Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
Diffstat (limited to 'docs/progguide/examples.adoc')
-rw-r--r-- | docs/progguide/examples.adoc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/progguide/examples.adoc b/docs/progguide/examples.adoc index 98b7f6a3a..3b570115d 100644 --- a/docs/progguide/examples.adoc +++ b/docs/progguide/examples.adoc @@ -111,7 +111,7 @@ the pointcut, we can reasonably ask which join point was reached. Information about the join point that was matched is available to advice through the special variable `thisJoinPoint`, of type -xref:../api/org/aspectj/lang/JoinPoint.html[`org.aspectj.lang.JoinPoint`]. +xref:../runtime-api/org/aspectj/lang/JoinPoint.html[`org.aspectj.lang.JoinPoint`]. Through this object we can access information such as * the kind of join point that was matched @@ -220,7 +220,7 @@ advised. The name of the method and that method's defining class are available as parts of the -xref:../api/org/aspectj/lang/Signature.html[`org.aspectj.lang.Signature`] +xref:../runtime-api/org/aspectj/lang/Signature.html[`org.aspectj.lang.Signature`] object returned by calling `getSignature()` on either `thisJoinPoint` or `thisJoinPointStaticPart`. @@ -228,7 +228,7 @@ object returned by calling `getSignature()` on either `thisJoinPoint` or The static portions of the parameter details, the name and types of the parameters, can be accessed through the -xref:../api/org/aspectj/lang/reflect/CodeSignature.html[`org.aspectj.lang.reflect.CodeSignature`] +xref:../runtime-api/org/aspectj/lang/reflect/CodeSignature.html[`org.aspectj.lang.reflect.CodeSignature`] associated with the join point. All execution join points have code signatures, so the cast to `CodeSignature` cannot fail. |