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

C

CGIsend(int) - Method in class com.marringtons.net.HTTP.Response
Special case to send characters to the browser one at a time (unbuffered).
Cache - class com.marringtons.util.Cache.
This is a generic caching system allowing LRU, time sensitive, time limited and pooling caches.
Cache(String, int) - Constructor for class com.marringtons.util.Cache
Initialise cache with maximum number of entries from the properties file before the oldest are cleared.
Cache(String, int, boolean) - Constructor for class com.marringtons.util.Cache
Initialise time-sensitive cache with the default amount of time before an entry expires.
Cache(int) - Constructor for class com.marringtons.util.Cache
Initialise cache with maximum number of entries before the oldest are cleared.
ClassCache - class com.marringtons.file.ClassCache.
This is a specialist classloader used by the Adept servlet system to load classes from more sources than those provided my the standard class loader.
Client - class com.marringtons.net.HTTP.Client.
This class provides complete HTTP client functionality so that a Java program can act as a browser does in talking to a HTTP server.
Client(int) - Constructor for class com.marringtons.net.HTTP.Client
Create a client pointing to a server on the local machine for the defined port.
Client(int, Writer) - Constructor for class com.marringtons.net.HTTP.Client
Create a client pointing to a server on the local machine for the defined port.
Client(String, int) - Constructor for class com.marringtons.net.HTTP.Client
Create a client pointing to a server on the named machine.
Client(String, int, Writer) - Constructor for class com.marringtons.net.HTTP.Client
Create a client pointing to a server on the named machine.
ClientSocket - class com.marringtons.net.ClientSocket.
A client TCP/IP Socket class for simplified basic network I/O.
ClientSocket(int) - Constructor for class com.marringtons.net.ClientSocket
Open a client socket on the local server ready for reading and writing.
ClientSocket(String, int) - Constructor for class com.marringtons.net.ClientSocket
Open a client socket on the local server ready for reading and writing.
ClientSocket(InetAddress, int) - Constructor for class com.marringtons.net.ClientSocket
Open a client socket on the local server ready for reading and writing.
Closeable - interface com.marringtons.util.Closeable.
Used by any object that needs to be closed before it drops from sight.
Convert - class com.marringtons.string.Convert.
Convert to and from a String Object from various internal forms, including integers and boolean primatives.
Convert.Exception - exception com.marringtons.string.Convert.Exception.
Thrown by any conversion utility on error.
Convert.Exception() - Constructor for class com.marringtons.string.Convert.Exception
Constructor for ConversionException.
Convert.Exception(String) - Constructor for class com.marringtons.string.Convert.Exception
Constructor for ConversionException that takes a message.
cData - Variable in class com.marringtons.xml.XMLtoMap.Node
Concatenated CData from xml node
calendar() - Method in class com.marringtons.time.Date
Retrieve a Calendar object for this time.
calendar - Variable in class com.marringtons.time.Time
Calendar structure for the current time
changeConfiguration(String, String) - Static method in class com.marringtons.util.Application
Application functionality can be modified with properties loaded from properties files.
check(String, int) - Method in class com.marringtons.string.Properties
test numeric and retrieve an integer property, with default.
check(String, boolean) - Method in class com.marringtons.string.Properties
Retrieve a boolean property, with default.
check(boolean) - Method in class com.marringtons.util.TestCase
A simpler and more readable way of saying assertTrue();
check(boolean, Object) - Method in class com.marringtons.util.TestCase
A simpler and more readable way of saying assertTrue();
children - Variable in class com.marringtons.xml.XMLtoMap.Node
Map Child Node Instances, keyed on node name.
classScope(Class, String, Class, Session.Lifetime) - Static method in class com.marringtons.util.Session
Retrieve key for class scope data - to be kept in private static final in using class.
clear() - Method in class com.marringtons.net.HTTP.Client
Used by testing routines where client input is kept in a string to clear this input.
clear() - Method in class com.marringtons.net.HTTP.Header
Clear the header of content - typically ready to load a new header.
clear() - Method in class com.marringtons.number.IntegerStack
Empty stack - releasing all references.
clear() - Method in class com.marringtons.object.Database
Empty database of contents.
clear() - Method in class com.marringtons.string.StringStack
Empty stack - releasing all references.
clear() - Method in class com.marringtons.util.Cache
Delete all entries in the cache and remove them.
clear() - Method in class com.marringtons.util.Semaphore
Clear any outstanding resumes rather than queue them up.
clear() - Method in class com.marringtons.util.Stack
Empty stack - releasing all references.
close() - Method in class com.marringtons.file.FileCache
Close cache when finished with it.
close() - Method in class com.marringtons.file.FileReader
Close BufferedReader object.
close() - Method in class com.marringtons.file.ZipOutputStream
Close a zip file - flushing any existing writer.
close() - Method in class com.marringtons.net.ClientSocket
Close a socket and release all resources.
close() - Method in class com.marringtons.net.HTTP.Client
Close a persistent connection (one where each message had a length).
close() - Method in class com.marringtons.net.HTTP.Response
Flush and close the connection.
close() - Method in class com.marringtons.object.DAO
Close the DAO - writing if dirty.
close() - Method in class com.marringtons.util.Cache
Delete all entries from cache then close cache so that all resources can be released.
close() - Method in interface com.marringtons.util.Closeable
Used by the caching system.
close() - Method in class com.marringtons.util.Session
Close the session - closing closeable objects and persisting persistent ones.
closeAll() - Static method in class com.marringtons.util.Cache
If some caches hold critical data that needs to be preserved, either close the specific cache with close() or close all caches before stopping the program.
closeAllSessions() - Static method in class com.marringtons.util.Session
When a user exits (as in a server closing), this must be called to persist relevant session data.
closeDatabases() - Static method in class com.marringtons.object.Database
Called before program exits to make sure all systems are flushed.
closeEntry() - Method in class com.marringtons.file.ZipOutputStream
Close a zip entry - flushing any existing writer.
com.marringtons.file - package com.marringtons.file
The Adept file package provides easier to use and more extensive file operations to supplement the basic Java NIO and IO packages.
com.marringtons.io - package com.marringtons.io
Provides extra functionality to the Java IO packages.
com.marringtons.net - package com.marringtons.net
This package provides basic network I/O processing, including client socket level communications across a TCP/IP network.
com.marringtons.net.HTTP - package com.marringtons.net.HTTP
This package provides http protocol support with client interaction, HTTP headers, request/response and URL processing.
com.marringtons.number - package com.marringtons.number
This is a package of numeric manipulations - including fractions, maps and stack.
com.marringtons.object - package com.marringtons.object
The Adept object package provides sophisticated object manipulation and storage, including a full-featured object database.
com.marringtons.string - package com.marringtons.string
Strings are as varied as the human language they represent - and require additional support for translation to/from the computer domain.
com.marringtons.time - package com.marringtons.time
This is a package containing Date and Time methods to make it easier to deal with the 4th dimension from within a computer program.
com.marringtons.util - package com.marringtons.util
Every library requires a catch-all packages for classes that cannot be easily grouped elsewhere - and here it is - caches, maps, semaphores, sessions, threads and much more.
com.marringtons.xml - package com.marringtons.xml
This package provides a simple basic XML processing package where the much more complex XML systems would be overkill.
commandLine - Static variable in class com.marringtons.util.Application
String array passed into the program with command line arguments.
commit() - Method in class com.marringtons.object.DAO
Replace existing object with changes (if any are recorded).
commit() - Method in class com.marringtons.util.Session
Commit persistent data if it has changed.
commitImmediate() - Method in class com.marringtons.object.DAO
Replace existing object with changes (if any are recorded).
compareTo(Object) - Method in class com.marringtons.number.Fraction
 
compareTo(Object) - Method in class com.marringtons.object.DAO
So that DAO value objects can be sorted, added into trees, etc.
compareTo(Object) - Method in class com.marringtons.object.POJO
DO a deep compare of the objects down to their component primatives and strings.
compareTo(Object) - Method in class com.marringtons.time.Date
 
compareTo(Object) - Method in class com.marringtons.time.Time
 
configuration - Static variable in class com.marringtons.util.Application
Application configuration - properties change by the user to reflect customisation of the application.
contentLength() - Method in class com.marringtons.net.HTTP.Header
Use to retrieve the length of the message content to be sent.
contentLength(int) - Method in class com.marringtons.net.HTTP.Header
Set the content length - presumably for a write.
contentType(String) - Static method in class com.marringtons.net.HTTP.Response
Used by HTTPconnection to see if the browser can definitely handle this type of file.
converse() - Method in class com.marringtons.net.HTTP.Client
Called when thread starts to do the real work.
copy() - Method in class com.marringtons.object.DAO
Return a copy of a DAO object that can then be added to the database as a new record.
copy(Object, Object) - Method in class com.marringtons.object.DTO
Copy data between one object and another where the field names match.
copy(Object) - Method in class com.marringtons.object.DTO
Copy data between one object and another where the field names match.
copy() - Method in class com.marringtons.object.POJO
Return a deep copy of a POJO.
create() - Static method in class com.marringtons.util.Session
Create a new session.
current(String) - Static method in class com.marringtons.util.Session
Get a session given a string key provided by the browser.
current() - Static method in class com.marringtons.util.Session
Get the current session based on the thread name.

A B C D E F G H I J K L M N O P R S T U V W X Y Z _
Copyright © 2005 Paul Marrington http://library.marringtons.com