- All Implemented Interfaces:
Localized
A panel showing a tree of resources together with their metadata and data views.
This panel also contains a "new window" button for creating new windows showing the same data but potentially
a different locations and times.
ResourceExplorer
contains a list of windows created by this widget.- Since:
- 1.1
-
Property Summary
TypePropertyDescriptionfinal ReadOnlyProperty
<Resource> Returns the property for currently selected resource. -
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionfinal Locale
Returns the locale for controls and messages.Returns the function to be called when a resource is closed.Returns the function to be called after a resource has been loaded from a file or URL.final Resource
Returns the currently selected resource.final Region
getView()
Returns the region containing the resource tree, metadata panel and any other control managed by thisResourceExplorer
.void
loadResources
(Collection<?> files) Loads all given sources in background threads and add them to the resource tree.void
removeAndClose
(Resource resource) Removes the given resource from the tree and eventually closes it.final ReadOnlyProperty
<Resource> Returns the property for currently selected resource.void
Specifies a function to be called when a resource is closed.void
Specifies a function to be called after a resource has been loaded from a file or URL.
-
Property Details
-
selectedResource
Returns the property for currently selected resource.- See Also:
-
-
Constructor Details
-
ResourceExplorer
public ResourceExplorer()Creates a new panel for exploring resources.
-
-
Method Details
-
getLocale
Returns the locale for controls and messages.- Specified by:
getLocale
in interfaceLocalized
- Overrides:
getLocale
in classWidget
- Returns:
- the locale for controls in this widget.
-
getView
Returns the region containing the resource tree, metadata panel and any other control managed by thisResourceExplorer
. The subclass is implementation dependent and may change in any future version. -
getOnResourceLoaded
Returns the function to be called after a resource has been loaded from a file or URL. This is an accessor for theResourceTree.onResourceLoaded
property value.- Returns:
- current function to be called after a resource has been loaded, or
null
if none. - See Also:
-
setOnResourceLoaded
Specifies a function to be called after a resource has been loaded from a file or URL. This is a setter for theResourceTree.onResourceLoaded
property value. If this method is never invoked, then the default value isnull
.- Parameters:
handler
- new function to be called after a resource has been loaded, ornull
if none.- See Also:
-
getOnResourceClosed
Returns the function to be called when a resource is closed. This is an accessor for theResourceTree.onResourceClosed
property value.- Returns:
- current function to be called when a resource is closed, or
null
if none. - Since:
- 1.2
- See Also:
-
setOnResourceClosed
Specifies a function to be called when a resource is closed. This is a setter for theResourceTree.onResourceClosed
property value. If this method is never invoked, then the default value isnull
.- Parameters:
handler
- new function to be called when a resource is closed, ornull
if none.- Since:
- 1.2
- See Also:
-
loadResources
Loads all given sources in background threads and add them to the resource tree. The given collection typically contains files to load, but may also containResource
instances to add directly. This method forwards the files toResourceTree.loadResource(Object)
, which will allocate a background thread for each resource to load. -
removeAndClose
Removes the given resource from the tree and eventually closes it. If the given resource is not in this tree explorer or cannot be removed, then this method does nothing.- Parameters:
resource
- the resource to remove, ornull
.- See Also:
-
getSelectedResource
Returns the currently selected resource.- Returns:
- the currently selected resource, or
null
if none.
-
selectedResourceProperty
Returns the property for currently selected resource.- Returns:
- property for currently selected resource.
-