Package de.aristaflow.adept2.ui.swtgui
Class SwtUrlContext.BrowserCloseTask
- java.lang.Object
-
- de.aristaflow.adept2.util.CleanupTask.AbstractCleanupTask<RuntimeException>
-
- de.aristaflow.adept2.ui.swtgui.SwtUrlContext.BrowserCloseTask
-
- All Implemented Interfaces:
CleanupTask<RuntimeException>
- Enclosing class:
- SwtUrlContext
protected static final class SwtUrlContext.BrowserCloseTask extends CleanupTask.AbstractCleanupTask<RuntimeException>
The clean-up task for closing the browser.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface de.aristaflow.adept2.util.CleanupTask
CleanupTask.AbstractCleanupTask<EX extends Exception>, CleanupTask.AtomicCloseTask, CleanupTask.CloseAndResetTask, CleanupTask.MutableCloseTask
-
-
Field Summary
Fields Modifier and Type Field Description protected org.apache.commons.lang3.mutable.Mutable<org.eclipse.swt.browser.Browser>
browser
-
Fields inherited from class de.aristaflow.adept2.util.CleanupTask.AbstractCleanupTask
descriptor, logger
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
BrowserCloseTask(SwtUrlContext obj)
Creates new clean-up for closing the browser of the designatedSwtUrlContext
.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
cleanup(boolean explicit)
Performs the actual clean-up.-
Methods inherited from class de.aristaflow.adept2.util.CleanupTask.AbstractCleanupTask
getDescriptor
-
-
-
-
Constructor Detail
-
BrowserCloseTask
protected BrowserCloseTask(SwtUrlContext obj)
Creates new clean-up for closing the browser of the designatedSwtUrlContext
.- Parameters:
obj
- TheSwtUrlContext
of which to close the browser.
-
-
Method Detail
-
cleanup
public void cleanup(boolean explicit)
Description copied from interface:CleanupTask
Performs the actual clean-up. This method is only called byCleanup
and must NOT be called directly!- Parameters:
explicit
- Whether the clean-up was triggered explicitly viaCleanup.clean()
. Otherwise it was triggered implicitly as a post-mortem action by the object becoming phantom reachable.
-
-