Uses of Interface
org.apache.wicket.util.watch.IModifiable
-
Packages that use IModifiable Package Description org.apache.wicket.core.util.resource org.apache.wicket.extensions.markup.html.repeater.data.table.export Package for exporting data tables.org.apache.wicket.markup Base package for markup.org.apache.wicket.util.file File utilities.org.apache.wicket.util.resource Base support for resources.org.apache.wicket.util.template Resource extensions that make working with header contributions easier and more maintainable.org.apache.wicket.util.watch This package provides modification watchers. -
-
Uses of IModifiable in org.apache.wicket.core.util.resource
Classes in org.apache.wicket.core.util.resource that implement IModifiable Modifier and Type Class Description class
PackageResourceStream
AnIResourceStream
that reads data from a resource in the classpath.class
UrlResourceStream
UrlResourceStream implements IResource for URLs.class
WebExternalResourceStream
AnIResourceStream
that reads data from a file in the web application -
Uses of IModifiable in org.apache.wicket.extensions.markup.html.repeater.data.table.export
Classes in org.apache.wicket.extensions.markup.html.repeater.data.table.export that implement IModifiable Modifier and Type Class Description static class
ExportToolbar.DataExportResourceStreamWriter
AnIResourceStreamWriter
which writes the exportable data from a table to an output stream. -
Uses of IModifiable in org.apache.wicket.markup
Classes in org.apache.wicket.markup that implement IModifiable Modifier and Type Class Description class
MarkupResourceStream
An IResourceStream implementation with specific extensions for markup resource streams. -
Uses of IModifiable in org.apache.wicket.util.file
Classes in org.apache.wicket.util.file that implement IModifiable Modifier and Type Class 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. -
Uses of IModifiable in org.apache.wicket.util.resource
Subinterfaces of IModifiable in org.apache.wicket.util.resource Modifier and Type Interface 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 theIResourceStream.getInputStream()
.interface
IStringResourceStream
A resource that can be converted to a String representation, possibly using an explicit Charset.Classes in org.apache.wicket.util.resource that implement IModifiable Modifier and Type Class Description class
AbstractResourceStream
class
AbstractResourceStreamWriter
Base implementation of an IResourceStreamWriter so that you only have to override theIResourceStreamWriter.write(java.io.OutputStream)
.class
AbstractStringResourceStream
Base class for string resources.class
FileResourceStream
A FileResourceStream is an IResource implementation for files.class
FileSystemResourceStream
A FileSystemResourceStream is an IResourceStream implementation for Java NIO paths.class
ResourceStreamWrapper
A IResourceStream that wraps another resource streamclass
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 inputIResourceStream
.class
ZipResourceStream
An IResourceStream that ZIPs a directory's contents on the fly -
Uses of IModifiable in org.apache.wicket.util.template
Classes in org.apache.wicket.util.template that implement IModifiable Modifier and Type Class Description class
CssTemplate
Decorates aTextTemplate
with CSS tags.class
JavaScriptTemplate
Decorates aTextTemplate
with JavaScript tags.class
PackageTextTemplate
AString
resource that can be appended to.class
TextTemplate
Represents a text template that can do variable interpolation.class
TextTemplateDecorator
Provides the ability to 'decorate' the actual template contents before it is contributed to the header. -
Uses of IModifiable in org.apache.wicket.util.watch
Fields in org.apache.wicket.util.watch declared as IModifiable Modifier and Type Field Description IModifiable
ModificationWatcher.Entry. modifiable
Fields in org.apache.wicket.util.watch with type parameters of type IModifiable Modifier and Type Field Description ChangeListenerSet<IModifiable>
ModificationWatcher.Entry. listeners
Methods in org.apache.wicket.util.watch that return IModifiable Modifier and Type Method Description IModifiable
IModificationWatcher. remove(IModifiable modifiable)
Removes all entries associated with anIModifiable
object.IModifiable
ModificationWatcher. remove(IModifiable modifiable)
Methods in org.apache.wicket.util.watch that return types with arguments of type IModifiable Modifier and Type Method Description Set<IModifiable>
IModificationWatcher. getEntries()
Retrieves a key set of allIModifiable
objects currently being monitored.Set<IModifiable>
ModificationWatcher. getEntries()
Methods in org.apache.wicket.util.watch with parameters of type IModifiable Modifier and Type Method Description boolean
IModificationWatcher. add(IModifiable modifiable, IChangeListener<IModifiable> listener)
Adds anIModifiable
object and anIChangeListener
object to call when the modifiable object is modified.boolean
ModificationWatcher. add(IModifiable modifiable, IChangeListener<IModifiable> listener)
IModifiable
IModificationWatcher. remove(IModifiable modifiable)
Removes all entries associated with anIModifiable
object.IModifiable
ModificationWatcher. remove(IModifiable modifiable)
Method parameters in org.apache.wicket.util.watch with type arguments of type IModifiable Modifier and Type Method Description boolean
IModificationWatcher. add(IModifiable modifiable, IChangeListener<IModifiable> listener)
Adds anIModifiable
object and anIChangeListener
object to call when the modifiable object is modified.boolean
ModificationWatcher. add(IModifiable modifiable, IChangeListener<IModifiable> listener)
-