Ver código fonte

Fix some javadoc links in ADOCs

Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
tags/V1_9_21_1
Alexander Kriegisch 3 meses atrás
pai
commit
ecbe133810

+ 3
- 3
docs/progguide/examples.adoc Ver arquivo



Information about the join point that was matched is available to advice Information about the join point that was matched is available to advice
through the special variable `thisJoinPoint`, of type 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 Through this object we can access information such as


* the kind of join point that was matched * the kind of join point that was matched


The name of the method and that method's defining class are available as The name of the method and that method's defining class are available as
parts of the 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 object returned by calling `getSignature()` on either `thisJoinPoint` or
`thisJoinPointStaticPart`. `thisJoinPointStaticPart`.




The static portions of the parameter details, the name and types of the The static portions of the parameter details, the name and types of the
parameters, can be accessed through 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 associated with the join point. All execution join points have code
signatures, so the cast to `CodeSignature` cannot fail. signatures, so the cast to `CodeSignature` cannot fail.



+ 1
- 1
docs/progguide/language.adoc Ver arquivo

context of advice, just like `this` can only be used in the context of context of advice, just like `this` can only be used in the context of
non-static methods and variable initializers. In advice, `thisJoinPoint` non-static methods and variable initializers. In advice, `thisJoinPoint`
is an object of type 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, 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 `thisJoinPoint` has a `toString()` method that makes quick-and-dirty

+ 1
- 1
docs/progguide/semantics.adoc Ver arquivo

There is no general way to detect these kinds of circularities at There is no general way to detect these kinds of circularities at
compile time. If advice runs before its aspect is instantiated, AspectJ compile time. If advice runs before its aspect is instantiated, AspectJ
will throw a 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 === Aspect privilege



Carregando…
Cancelar
Salvar