Uses of Interface
org.apache.wicket.util.watch.IModifiable

Packages that use IModifiable
org.apache.wicket.util.file File utilities. 
org.apache.wicket.util.resource Base support for resources. 
org.apache.wicket.util.watch This package provides modification watchers. 
 

Uses of IModifiable in org.apache.wicket.util.file
 

Classes in org.apache.wicket.util.file that implement IModifiable
 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
 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.
 

Classes in org.apache.wicket.util.resource that implement IModifiable
 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 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
 

Uses of IModifiable in org.apache.wicket.util.watch
 

Fields in org.apache.wicket.util.watch declared as IModifiable
 IModifiable ModificationWatcher.Entry.modifiable
           
 

Methods in org.apache.wicket.util.watch that return IModifiable
 IModifiable IModificationWatcher.remove(IModifiable modifiable)
          Removes all entries associated with an IModifiable object.
 IModifiable ModificationWatcher.remove(IModifiable modifiable)
           
 

Methods in org.apache.wicket.util.watch that return types with arguments of type IModifiable
 Set<IModifiable> IModificationWatcher.getEntries()
          Retrieves a key set of all IModifiable objects currently being monitored.
 Set<IModifiable> ModificationWatcher.getEntries()
           
 

Methods in org.apache.wicket.util.watch with parameters of type IModifiable
 boolean IModificationWatcher.add(IModifiable modifiable, IChangeListener listener)
          Adds an IModifiable object and an IChangeListener object to call when the modifiable object is modified.
 boolean ModificationWatcher.add(IModifiable modifiable, IChangeListener listener)
           
 IModifiable IModificationWatcher.remove(IModifiable modifiable)
          Removes all entries associated with an IModifiable object.
 IModifiable ModificationWatcher.remove(IModifiable modifiable)
           
 



Copyright © 2006-2012 Apache Software Foundation. All Rights Reserved.