]> source.dussan.org Git - aspectj.git/commitdiff
Fix some javadoc links in ADOCs
authorAlexander Kriegisch <Alexander@Kriegisch.name>
Thu, 1 Feb 2024 10:11:38 +0000 (17:11 +0700)
committerAlexander Kriegisch <Alexander@Kriegisch.name>
Thu, 1 Feb 2024 10:11:38 +0000 (17:11 +0700)
Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
docs/progguide/examples.adoc
docs/progguide/language.adoc
docs/progguide/semantics.adoc

index 98b7f6a3a22ca97a09b4af925fb2b3c688c860ce..3b570115d8292c3f07afc3e59aa7e433a5f8df10 100644 (file)
@@ -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.
 
index 72a49e813d5bc87fca1599aaee5ca1e7c27d3ae2..feada215b27eef36fbeb753dea3dfa46650befbc 100644 (file)
@@ -896,7 +896,7 @@ advice to use. The `thisJoinPoint` variable can only be used in the
 context of advice, just like `this` can only be used in the context of
 non-static methods and variable initializers. In advice, `thisJoinPoint`
 is an object 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`].
 
 One way to use it is simply to print it out. Like all Java objects,
 `thisJoinPoint` has a `toString()` method that makes quick-and-dirty
index d993d2fcb1c9ffe4ee79435c8ea83a81802b75ca..8bebeef3f2e5e2bd3922846d1f13a6740a008339 100644 (file)
@@ -2109,7 +2109,7 @@ the before advice...
 There is no general way to detect these kinds of circularities at
 compile time. If advice runs before its aspect is instantiated, AspectJ
 will throw a
-xref:../api/org/aspectj/lang/NoAspectBoundException.html[`org.aspectj.lang.NoAspectBoundException`].
+xref:../runtime-api/org/aspectj/lang/NoAspectBoundException.html[`org.aspectj.lang.NoAspectBoundException`].
 
 === Aspect privilege