Class CollectingAttachmentHandler
java.lang.Object
org.htmlunit.attachment.CollectingAttachmentHandler
- All Implemented Interfaces:
Serializable, AttachmentHandler
An
AttachmentHandler implementation which creates an Attachment for
each attached page, collecting all created attachments into a list.- See Also:
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionCreates a new instance.Creates a new instance which collects attachments into the specified list. -
Method Summary
Modifier and TypeMethodDescriptionReturns the list of attachments collected by this attachment handler.voidhandleAttachment(Page page) Handles the specified attached page.Methods inherited from class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface AttachmentHandler
handleAttachment, isAttachment
-
Field Details
-
collectedAttachments_
-
-
Constructor Details
-
CollectingAttachmentHandler
public CollectingAttachmentHandler()Creates a new instance. -
CollectingAttachmentHandler
Creates a new instance which collects attachments into the specified list.- Parameters:
list- the list to store attachments in
-
-
Method Details
-
handleAttachment
Handles the specified attached page. This is some kind of information that the page was handled as attachment. This method will only be called ifAttachmentHandler.handleAttachment(WebResponse)has returned false for the response.- Specified by:
handleAttachmentin interfaceAttachmentHandler- Parameters:
page- an attached page, which doesn't get loaded inline
-
getCollectedAttachments
Returns the list of attachments collected by this attachment handler. The returned list is modifiable, so that attachments can be removed after being processed.- Returns:
- the list of attachments collected by this attachment handler
-