| Package | Description |
|---|---|
| org.apache.wicket.util.file |
File utilities.
|
| org.apache.wicket.util.listener |
Listener/ Observer utilities.
|
| org.apache.wicket.util.resource |
Base support for resources.
|
| org.apache.wicket.util.watch |
This package provides modification watchers.
|
| Modifier and Type | Class and Description |
|---|---|
class |
File
Simple extension of File that adds an implementation of IModifiable for files.
|
class |
Folder
This folder subclass provides some type safety and extensibility for "files" that hold other
files.
|
| Modifier and Type | Interface and Description |
|---|---|
interface |
IChangeListener2<T extends IModifiable>
Generic "something changed" listener interface that also provides the
changed object as an argument.
|
| Modifier and Type | Method and Description |
|---|---|
void |
ChangeListenerSet.notifyListeners(IModifiable modifiable) |
| Modifier and Type | Interface and Description |
|---|---|
interface |
IResourceStream
Interface to a streamed resource.
|
interface |
IResourceStreamWriter
Special IResourceStream implementation that a Resource can return when it directly wants to write
to an output stream instead of return the
IResourceStream.getInputStream(). |
interface |
IStringResourceStream
A resource that can be converted to a String representation, possibly using an explicit Charset.
|
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractResourceStream |
class |
AbstractResourceStreamWriter
Base implementation of an IResourceStreamWriter so that you only have to override the
IResourceStreamWriter.write(java.io.OutputStream). |
class |
AbstractStringResourceStream
Base class for string resources.
|
class |
FileResourceStream
A FileResourceStream is an IResource implementation for files.
|
class |
ResourceStreamWrapper
A IResourceStream that wraps another resource stream
|
class |
StringBufferResourceStream
A string resource that can be appended to.
|
class |
StringResourceStream
A StringResourceStream is an IResource implementation for strings.
|
class |
XSLTResourceStream
IResourceStream that applies XSLT on an input IResourceStream. |
class |
ZipResourceStream
An IResourceStream that ZIPs a directory's contents on the fly
|
| Modifier and Type | Field and Description |
|---|---|
IModifiable |
ModificationWatcher.Entry.modifiable |
| Modifier and Type | Method and Description |
|---|---|
IModifiable |
ModificationWatcher.remove(IModifiable modifiable) |
IModifiable |
IModificationWatcher.remove(IModifiable modifiable)
Removes all entries associated with an
IModifiable object. |
| Modifier and Type | Method and Description |
|---|---|
Set<IModifiable> |
ModificationWatcher.getEntries() |
Set<IModifiable> |
IModificationWatcher.getEntries()
Retrieves a key set of all
IModifiable objects currently being monitored. |
| Modifier and Type | Method and Description |
|---|---|
boolean |
ModificationWatcher.add(IModifiable modifiable,
IChangeListener listener) |
boolean |
IModificationWatcher.add(IModifiable modifiable,
IChangeListener listener)
Adds an
IModifiable object and an IChangeListener object to call
when the modifiable object is modified. |
IModifiable |
ModificationWatcher.remove(IModifiable modifiable) |
IModifiable |
IModificationWatcher.remove(IModifiable modifiable)
Removes all entries associated with an
IModifiable object. |
Copyright © 2006–2015 Apache Software Foundation. All rights reserved.