A B C D E F G H I J K L M N O P R S T U V W X

C

Call - Class in org.directwebremoting.extend
Call is a POJO to encapsulate the information required to make a single java call, including the result of the call (either returned data or exception).
Call() - Constructor for class org.directwebremoting.extend.Call
 
Callback<T> - Class in org.directwebremoting.proxy
A way to call functions in JavaScript that return data using a reverse ajax proxy.
Callback() - Constructor for class org.directwebremoting.proxy.Callback
Create a Callback from a DWR thread, i.e.
Callback(ScriptSession) - Constructor for class org.directwebremoting.proxy.Callback
Used when you need to specify the browser that will be providing the response
Callback(Collection<ScriptSession>) - Constructor for class org.directwebremoting.proxy.Callback
Used when you need to specify a group of browsers that will be providing the responses.
CallbackHelper - Interface in org.directwebremoting.extend
 
CallbackHelperFactory - Class in org.directwebremoting.extend
A class to help with the use of Callbacks
CallbackHelperFactory() - Constructor for class org.directwebremoting.extend.CallbackHelperFactory
 
CallbackHelperFactory.CallbackHelperBuilder - Interface in org.directwebremoting.extend
Class to enable us to access servlet parameters.
Calls - Class in org.directwebremoting.extend
The request made by the browser which consists of a number of function call requests and some associated information like the request mode (XHR or iframe).
Calls() - Constructor for class org.directwebremoting.extend.Calls
 
cancel() - Method in interface org.directwebremoting.extend.Alarm
Prevent further calls to Sleeper.wakeUp().
cancel() - Method in class org.directwebremoting.extend.BasicAlarm
 
CANCEL_UPLOAD - Static variable in class org.directwebremoting.event.SessionProgressListener
The attribute that indicates if the user wants to cancel the upload.
checkPageInformation(String, String, String) - Method in interface org.directwebremoting.extend.RealWebContext
Fill in the page details from the servlet request.
classForName(String) - Static method in class org.directwebremoting.util.LocalUtil
Utility to essentially do Class forName and allow configurable Classloaders.
classForName(String, String, Class<T>) - Static method in class org.directwebremoting.util.LocalUtil
Utility to essentially do Class forName with the assumption that the environment expects failures for missing jar files and can carry on if this process fails.
classNewInstance(String, String, Class<T>) - Static method in class org.directwebremoting.util.LocalUtil
Utility to essentially do Class forName and newInstance with the assumption that the environment expects failures for missing jar files and can carry on if this process fails.
clear() - Method in class org.directwebremoting.json.JsonArray
 
clear() - Method in class org.directwebremoting.json.JsonObject
 
clearConverted() - Method in class org.directwebremoting.extend.InboundContext
Clear the list of converted objects.
close() - Method in class org.directwebremoting.extend.DefaultJavascriptFunction
 
close() - Method in interface org.directwebremoting.io.JavascriptFunction
A small amount of data is stored on the client to track the remotely.
close() - Method in class org.directwebremoting.util.DelegatingServletInputStream
 
close() - Method in class org.directwebremoting.util.DelegatingServletOutputStream
 
close(Closeable) - Static method in class org.directwebremoting.util.LocalUtil
InputStream closer that can cope if the input stream is null.
close() - Method in class org.directwebremoting.util.WriterOutputStream
 
CodeBlock - Class in org.directwebremoting.proxy
A simple wrapper around a String to indicate that this string is executable Javascript and should not be quoted and escaped when it is passed to the client.
CodeBlock(String) - Constructor for class org.directwebremoting.proxy.CodeBlock
CodeBlocks are immutable wrappers around strings
CollectionOutboundVariable - Interface in org.directwebremoting.extend
A helper class for people that want to implement OutboundVariable.
CommonsLoggingOutput - Class in org.directwebremoting.util
This class is intended to be used by Logger when commons-logging is available, but to not force Logger itself to depend on commons-logging so Logger can catch the ClassDefNotFoundError and use other methods.
CommonsLoggingOutput(Class<?>) - Constructor for class org.directwebremoting.util.CommonsLoggingOutput
Create a logger specific to commons-logging
compare(T, T) - Method in class org.directwebremoting.datasync.SortCriteriaComparator
 
compareTo(ScriptConduit) - Method in class org.directwebremoting.extend.ScriptConduit
 
compressJavaScript(String) - Method in interface org.directwebremoting.extend.Compressor
Compress a JavaScript file to a smaller version of the original
Compressor - Interface in org.directwebremoting.extend
An interface to the various methods of compressing web resources.
Configurator - Interface in org.directwebremoting.extend
Provides a way to add bits of configuration to the system.
configure(Container) - Method in interface org.directwebremoting.extend.Configurator
Do the Configuration actions
Container - Interface in org.directwebremoting
A very basic IoC container.
ContainerAbstraction - Interface in org.directwebremoting.extend
We need to keep container specific logic out of BasePollHandler, and other parts of DWR.
ContainerConfigurationException - Exception in org.directwebremoting.extend
Something has gone wrong while configuring a Container
ContainerConfigurationException(String) - Constructor for exception org.directwebremoting.extend.ContainerConfigurationException
Constructs a new runtime exception with the specified detail message.
ContainerConfigurationException(String, Throwable) - Constructor for exception org.directwebremoting.extend.ContainerConfigurationException
Constructs a new runtime exception with the specified detail message and cause.
ContainerConfigurationException(Throwable) - Constructor for exception org.directwebremoting.extend.ContainerConfigurationException
Constructs a new runtime exception with the specified cause and a detail message of (cause==null ? null : cause.toString()) (which typically contains the class and detail message of cause).
ContainerUtil - Class in org.directwebremoting.extend
An abstraction of all the common servlet operations that are required to host a DWR service that depends on the servlet spec.
ContainerUtil() - Constructor for class org.directwebremoting.extend.ContainerUtil
 
contains(Object) - Method in class org.directwebremoting.json.JsonArray
 
containsAll(Collection<?>) - Method in class org.directwebremoting.json.JsonArray
 
containsHeader(String) - Method in class org.directwebremoting.util.FakeHttpServletResponse
 
containsHeader(String) - Method in class org.directwebremoting.util.SwallowingHttpServletResponse
 
containsKey(Object) - Method in class org.directwebremoting.json.JsonObject
 
containsValue(Object) - Method in class org.directwebremoting.json.JsonObject
 
containsXssRiskyCharacters(String) - Static method in class org.directwebremoting.Security
Return true iff the input string contains any of the characters that are special to XML: &, <, >, ' or "
Context - Class in org.directwebremoting.proxy.io
Context is a way for a ScriptProxy to return a value that can only be realized on the client.
Context(Context, String, ScriptProxy) - Constructor for class org.directwebremoting.proxy.io.Context
Create a new Context
Continuation - Class in org.directwebremoting.util
A wrapper around Jetty Ajax Continuations
Continuation(HttpServletRequest) - Constructor for class org.directwebremoting.util.Continuation
Fish the Jetty continuation out of the request if it exists
ConversionException - Exception in org.directwebremoting
Something has gone wrong when we were doing some conversion.
ConversionException(Class<?>) - Constructor for exception org.directwebremoting.ConversionException
Default ctor
ConversionException(Class<?>, Throwable) - Constructor for exception org.directwebremoting.ConversionException
Construct a ConversionException with an exception and a destination type
ConversionException(Class<?>, String) - Constructor for exception org.directwebremoting.ConversionException
Construct a ConversionException with a description message and exception
ConversionException(Class<?>, String, Throwable) - Constructor for exception org.directwebremoting.ConversionException
Construct a ConversionException with a description message and exception
Converter - Interface in org.directwebremoting.extend
An interface for converting types from a string to some other type.
ConverterManager - Interface in org.directwebremoting.extend
A class to manage the converter types and the instantiated class name matches.
convertInbound(Class<?>, InboundVariable) - Method in interface org.directwebremoting.extend.Converter
Attempt to coerce the data from a string to an Object.
convertInbound(Class<T>, InboundVariable, TypeHintContext) - Method in interface org.directwebremoting.extend.ConverterManager
Convert an object from being a string into an object of some type.
convertInbound(Class<T>, RawData) - Method in interface org.directwebremoting.extend.ConverterManager
RawData is something of a special case for conversion - it's designed to be converted outside of the normal automatic conversion process when the type can't be known until later.
convertOutbound(Object, OutboundContext) - Method in interface org.directwebremoting.extend.Converter
Return a javascript string that defines the variable named varName to have the contents of the converted object data.
convertOutbound(Object, OutboundContext) - Method in interface org.directwebremoting.extend.ConverterManager
Convert an object into a Javascript representation of the same.
ConvertUtil - Class in org.directwebremoting.extend
 
ConvertUtil() - Constructor for class org.directwebremoting.extend.ConvertUtil
 
copy(byte[], OutputStream) - Static method in class org.directwebremoting.util.CopyUtils
Copy bytes from a byte[] to an OutputStream.
copy(byte[], Writer) - Static method in class org.directwebremoting.util.CopyUtils
Copy and convert bytes from a byte[] to chars on a Writer.
copy(byte[], Writer, String) - Static method in class org.directwebremoting.util.CopyUtils
Copy and convert bytes from a byte[] to chars on a Writer, using the specified encoding.
copy(InputStream, OutputStream) - Static method in class org.directwebremoting.util.CopyUtils
Copy bytes from an InputStream to an OutputStream.
copy(Reader, Writer) - Static method in class org.directwebremoting.util.CopyUtils
Copy chars from a Reader to a Writer.
copy(InputStream, Writer) - Static method in class org.directwebremoting.util.CopyUtils
Copy and convert bytes from an InputStream to chars on a Writer.
copy(InputStream, Writer, String) - Static method in class org.directwebremoting.util.CopyUtils
Copy and convert bytes from an InputStream to chars on a Writer, using the specified encoding.
copy(Reader, OutputStream) - Static method in class org.directwebremoting.util.CopyUtils
Serialize chars from a Reader to bytes on an OutputStream, and flush the OutputStream.
copy(String, OutputStream) - Static method in class org.directwebremoting.util.CopyUtils
Serialize chars from a String to bytes on an OutputStream, and flush the OutputStream.
copy(String, Writer) - Static method in class org.directwebremoting.util.CopyUtils
Copy chars from a String to a Writer.
CopyUtils - Class in org.directwebremoting.util
This class provides static utility methods for buffered copying between sources (InputStream, Reader, String and byte[]) and destinations (OutputStream, Writer, String and byte[]).
countPersistentConnections() - Method in interface org.directwebremoting.extend.RealScriptSession
Are there any persistent ScriptConduits currently connected to this session?
createChildContext(int) - Method in class org.directwebremoting.extend.TypeHintContext
Create a child TypeHintContext based on this one
createForeignWindowProxy(String, ScriptBuffer) - Static method in class org.directwebremoting.extend.EnginePrivate
Evade the 2 connection limit by sending scripts to the wrong window and having that use window.name to push it to the right window
createInboundVariable(int, String, String, String) - Method in class org.directwebremoting.extend.InboundContext
Create an inbound variable.
createInboundVariable(int, String, String, FormField) - Method in class org.directwebremoting.extend.InboundContext
Create an inbound file variable.
createOutput(ScriptBuffer, ConverterManager) - Static method in class org.directwebremoting.extend.ScriptBufferUtil
Return a string ready for output.
createOutput(ScriptBuffer, ConverterManager, boolean) - Static method in class org.directwebremoting.extend.ScriptBufferUtil
Return a string ready for output.
createScriptSession(String, String) - Method in interface org.directwebremoting.extend.ScriptSessionManager
When a new client page-loads, we create a script session.
createSleeper(HttpServletRequest) - Method in interface org.directwebremoting.extend.ContainerAbstraction
Create a sleeper that is appropriate for the given servlet container
Creator - Interface in org.directwebremoting.extend
A base class for all AllowedClasses
CreatorManager - Interface in org.directwebremoting.extend
A class to manage the types of creators and the instantiated creators.

Copyright ยจ 2008
A B C D E F G H I J K L M N O P R S T U V W X