Package org.aspectj.bridge.context
Class PinpointingMessageHandler
java.lang.Object
org.aspectj.bridge.context.PinpointingMessageHandler
- All Implemented Interfaces:
IMessageHandler
- Author:
- colyer Facade for an IMessageHandler Extends message with details of exactly what the compiler / weaver was doing at the time. Use the -Xdev:Pinpoint option to turn this facility on.
-
Field Summary
Fields inherited from interface org.aspectj.bridge.IMessageHandler
SYSTEM_ERR, SYSTEM_OUT, THROW -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoiddontIgnore(IMessage.Kind kind) Allow fine grained configuration after initialization.booleanhandleMessage(IMessage message) Handle message, by reporting and/or throwing an AbortException.voidignore(IMessage.Kind kind) Allow fine grained configuration after initialization.booleanisIgnoring(IMessage.Kind kind) Signal clients whether this will ignore messages of a given type.
-
Constructor Details
-
PinpointingMessageHandler
-
-
Method Details
-
handleMessage
Description copied from interface:IMessageHandlerHandle message, by reporting and/or throwing an AbortException.- Specified by:
handleMessagein interfaceIMessageHandler- Parameters:
message- the IMessage to handle - never null- Returns:
- true if this message was handled by this handler
- Throws:
AbortException- depending on handler logic.
-
isIgnoring
Description copied from interface:IMessageHandlerSignal clients whether this will ignore messages of a given type. Clients may use this to avoid constructing or sending certain messages.- Specified by:
isIgnoringin interfaceIMessageHandler- Returns:
- true if this handler is ignoring all messages of this type
-
dontIgnore
Description copied from interface:IMessageHandlerAllow fine grained configuration after initialization. Minaly used in LTW. Most of the implementation can have this method be a no-op.- Specified by:
dontIgnorein interfaceIMessageHandler
-
ignore
Description copied from interface:IMessageHandlerAllow fine grained configuration after initialization.- Specified by:
ignorein interfaceIMessageHandler
-