Browse Source

Fix some javadoc links in ADOCs

Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
tags/V1_9_21_1
Alexander Kriegisch 2 months ago
parent
commit
ecbe133810
3 changed files with 5 additions and 5 deletions
  1. 3
    3
      docs/progguide/examples.adoc
  2. 1
    1
      docs/progguide/language.adoc
  3. 1
    1
      docs/progguide/semantics.adoc

+ 3
- 3
docs/progguide/examples.adoc View 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.


+ 1
- 1
docs/progguide/language.adoc View 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

+ 1
- 1
docs/progguide/semantics.adoc View 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


Loading…
Cancel
Save