Package io.guise.framework.component
Interface ResourceCollectControl.Depictor<C extends ResourceCollectControl>
-
- Type Parameters:
C
- The type of control to be depicted.
- All Superinterfaces:
Depictor<C>
- All Known Implementing Classes:
WebResourceCollectDepictor
- Enclosing class:
- ResourceCollectControl
public static interface ResourceCollectControl.Depictor<C extends ResourceCollectControl> extends Depictor<C>
The custom depictor type for web collect controls.- Author:
- Garret Wilson
-
-
Field Summary
-
Fields inherited from interface io.guise.framework.platform.Depictor
GENERAL_PROPERTY
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
cancel()
Requests that resource collection be canceled.void
receive(java.net.URI destinationURI, Bookmark destinationBookmark)
Requests that resource collection start.-
Methods inherited from interface io.guise.framework.platform.Depictor
depict, getDepictContext, getDepictedObject, getPlatform, getSession, installed, isDepicted, processEvent, setDepicted, uninstalled
-
-
-
-
Method Detail
-
receive
void receive(java.net.URI destinationURI, Bookmark destinationBookmark)
Requests that resource collection start.- Parameters:
destinationURI
- The URI representing the destination of the collected resources, relative to the application.destinationBookmark
- The bookmark to be used in receiving the resources at the destination path, ornull
if no bookmark should be used.- Throws:
java.lang.NullPointerException
- if the given destination URI isnull
.
-
cancel
void cancel()
Requests that resource collection be canceled.
-
-