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

O

ObjectDescriptor - class org.sadun.util.ObjectDescriptor.
This object exposes methods which use bean introspection to print out descriptions of objects using a resource bundle.
ObjectLister - class org.sadun.util.ObjectLister.
A class to list the elements of an array or a collection/enumeration into a string, each element divided by a separtor, by invoking either the toString() method or a given method with no parameters (and returning a String).
ObjectLister(String, char, boolean, boolean) - Constructor for class org.sadun.util.ObjectLister
Constructor for ObjectLister.
ObjectLister(String, boolean, boolean) - Constructor for class org.sadun.util.ObjectLister
Constructor for ObjectLister.
ObjectLister(String, boolean) - Constructor for class org.sadun.util.ObjectLister
Constructor for ObjectLister, which does not fail if the method to use is not accessible.
ObjectLister(String, char, boolean) - Constructor for class org.sadun.util.ObjectLister
Constructor for ObjectLister, which does not fail if the method to use is not accessible.
ObjectLister(boolean) - Constructor for class org.sadun.util.ObjectLister
Constructor for ObjectLister, which uses the default sequence ObjectLister.DEFAULT_SEPARATORas separator.
ObjectLister(String) - Constructor for class org.sadun.util.ObjectLister
Constructor for ObjectLister.
ObjectLister(String, char) - Constructor for class org.sadun.util.ObjectLister
Constructor for ObjectLister.
ObjectLister() - Constructor for class org.sadun.util.ObjectLister
Constructor for ObjectLister, which uses the default sequence ObjectLister.DEFAULT_SEPARATORas separator.
ObjectLister(char) - Constructor for class org.sadun.util.ObjectLister
Constructor for ObjectLister, which uses the default sequence ObjectLister.DEFAULT_SEPARATORas separator.
ObjectPool - class org.sadun.util.pool.ObjectPool.
An object pool, which holds n identical copies of an object and allows access and release of each of them.
ObjectPool(int, ObjectPool.Factory) - Constructor for class org.sadun.util.pool.ObjectPool
Create a pool of n objects using the given factory
ObjectPool(int, String, Object[], Setup) - Constructor for class org.sadun.util.pool.ObjectPool
Create a pool of n object of the given class (by name) using the given construction parameters.
ObjectPool(int, String, Object[]) - Constructor for class org.sadun.util.pool.ObjectPool
Create a pool of n object of the given class (by name) using the given construction parameters.
ObjectPool(int, String) - Constructor for class org.sadun.util.pool.ObjectPool
Create a pool of n object of the given class (by name) using the default constructor.
ObjectPool(int, Class, Object[], Setup) - Constructor for class org.sadun.util.pool.ObjectPool
Create a pool of n object of the given class using the given construction parameters.
ObjectPool(int, Class, Object[]) - Constructor for class org.sadun.util.pool.ObjectPool
Create a pool of n object of the given class using the given construction parameters.
ObjectPool(int, Class) - Constructor for class org.sadun.util.pool.ObjectPool
Create a pool of n object of the given class using the default constructor.
ObjectPool - class org.sadun.util.pool2.ObjectPool.
NOT COMPLETE YET.
ObjectPool(String, Configuration, Class) - Constructor for class org.sadun.util.pool2.ObjectPool
Create a named object pool of objects of the given class and the given Configuration (which also provides the size of the pool).
ObjectPool(String, Configuration, Class, Setup) - Constructor for class org.sadun.util.pool2.ObjectPool
Create a named object pool of objects of the given class and the given Configuration (which also provides the size of the pool).
ObjectPool(String, Configuration, Class, Object[]) - Constructor for class org.sadun.util.pool2.ObjectPool
Create a named object pool of objects of the given class and the given Configuration (which also provides the size of the pool).
ObjectPool(String, Configuration, Class, Object[], Setup) - Constructor for class org.sadun.util.pool2.ObjectPool
Create a named object pool of objects of the given class and the given Configuration (which also provides the size of the pool).
ObjectPool(String, int, Class, Object[]) - Constructor for class org.sadun.util.pool2.ObjectPool
Create a named object pool of n objects of the given class and a default Configuration.
ObjectPool(String, int, Class) - Constructor for class org.sadun.util.pool2.ObjectPool
Create a named object pool of n objects of the given class and a default Configuration.
ObjectPool(String, Configuration, ObjectPool.Factory) - Constructor for class org.sadun.util.pool2.ObjectPool
Create a named object pool of objects of the given class and the given Configuration (which also provides the size of the pool).
ObjectPool.BaseFactory - class org.sadun.util.pool.ObjectPool.BaseFactory.
A base implementation of ExtendedObjectPool.Factory relying on reflection, holding a Class object, an optional parameter array and an optional Setup object.
ObjectPool.BaseFactory(Class, Object[], Setup) - Constructor for class org.sadun.util.pool.ObjectPool.BaseFactory
Create a BaseFactory whose member cls will hold the class of the objects to produce
ObjectPool.BaseFactory(String, Object[], Setup) - Constructor for class org.sadun.util.pool.ObjectPool.BaseFactory
Create a BaseFactory whose member cls will hold the class of the objects to produce
ObjectPool.DefaultPassivationManagerFactory - class org.sadun.util.pool2.ObjectPool.DefaultPassivationManagerFactory.
An ObjectPool.PassivationManagerFactory which produces DefaultPassivationManagers
ObjectPool.DefaultPassivationManagerFactory() - Constructor for class org.sadun.util.pool2.ObjectPool.DefaultPassivationManagerFactory
 
ObjectPool.Factory - interface org.sadun.util.pool.ObjectPool.Factory.
If an object to be pooled can't be constructed directly by invoking a constructor, a Factory can be provided to do the construction job.
ObjectPool.ObjectFactory - class org.sadun.util.pool.ObjectPool.ObjectFactory.
An ExtendedObjectPool.Factory implementation which uses reflection to create instances of a certain class.
ObjectPool.ObjectFactory(Class, Object[], Setup) - Constructor for class org.sadun.util.pool.ObjectPool.ObjectFactory
Create a factory which will construct object of the given class, with the given parameters, using the given Setup object.
ObjectPool.ObjectFactory(String, Object[], Setup) - Constructor for class org.sadun.util.pool.ObjectPool.ObjectFactory
Create a factory which will construct object of the given class, with the given parameters, using the given Setup object.
ObjectPool.ObjectPoolException - exception org.sadun.util.pool.ObjectPool.ObjectPoolException.
An exception thrown in case of pooling operation errors.
ObjectPool.ObjectPoolException(String) - Constructor for class org.sadun.util.pool.ObjectPool.ObjectPoolException
 
ObjectPool.ObjectPoolException(Throwable) - Constructor for class org.sadun.util.pool.ObjectPool.ObjectPoolException
 
ObjectPool.ObjectPoolException(String, Throwable) - Constructor for class org.sadun.util.pool.ObjectPool.ObjectPoolException
 
ObjectPool.PassivationManagerFactory - class org.sadun.util.pool2.ObjectPool.PassivationManagerFactory.
A base class for a factory of BasePassivationManagers.
ObjectPool.PassivationManagerFactory() - Constructor for class org.sadun.util.pool2.ObjectPool.PassivationManagerFactory
 
ObjectPool.PooledObjectFactory - class org.sadun.util.pool2.ObjectPool.PooledObjectFactory.
A object factory which produces BasePooledObject wrappers for other classes.
ObjectPool.PooledObjectFactory(ObjectPool, ObjectPool.Factory) - Constructor for class org.sadun.util.pool2.ObjectPool.PooledObjectFactory
Create a factory which is used by the given ObjectPool and employs the given org.sadun.util.pool.ObjectPool.Factory
ObjectPool.PooledObjectWrapper - class org.sadun.util.pool.ObjectPool.PooledObjectWrapper.
 
ObjectPoolTest - class org.sadun.util.pool.test.ObjectPoolTest.
 
ObjectPoolTest() - Constructor for class org.sadun.util.pool.test.ObjectPoolTest
 
ObjectPropertyManager - class org.sadun.util.ObjectPropertyManager.
This class allows to set and retrieve properties, by name, by any object using introspection and JavaBeans conventions.
ObjectPropertyManager(Object) - Constructor for class org.sadun.util.ObjectPropertyManager
Create an object manager which can set or get properties from the given target object
ObjectPropertyManager.NoSuchPropertyException - exception org.sadun.util.ObjectPropertyManager.NoSuchPropertyException.
An exception thrown when the ObjectPropertyManager cannot find a property in a bean.
ObjectSignal - class com.deltax.util.listener.ObjectSignal.
A signal carryin an object argument.
ObjectSignal(Object, Object) - Constructor for class com.deltax.util.listener.ObjectSignal
 
ObjectWithID - interface org.sadun.util.pool2.test.ObjectWithID.
 
ObjectWithId - interface org.sadun.util.ObjectWithId.
Objects implementing this interface have a string identifier.
ObjectWithIdMetadata - interface org.sadun.util.ObjectWithIdMetadata.
 
ObjectWrapperGenerator - class org.sadun.util.codegen.ObjectWrapperGenerator.
This class generates wrapper classes for existing classes, in both source and compiled form.
ObjectWrapperGenerator() - Constructor for class org.sadun.util.codegen.ObjectWrapperGenerator
 
ObjectWrapperGeneratorException - exception org.sadun.util.codegen.ObjectWrapperGeneratorException.
 
ObjectWrapperGeneratorException() - Constructor for class org.sadun.util.codegen.ObjectWrapperGeneratorException
 
ObjectWrapperGeneratorException(String) - Constructor for class org.sadun.util.codegen.ObjectWrapperGeneratorException
 
ObjectWrapperGeneratorException(String, Throwable) - Constructor for class org.sadun.util.codegen.ObjectWrapperGeneratorException
 
ObjectWrapperGeneratorException(Throwable) - Constructor for class org.sadun.util.codegen.ObjectWrapperGeneratorException
 
ObservableSignal - class com.deltax.util.listener.ObservableSignal.
A signal produced by an Observable object.
ObservableSignal(Observable, Object) - Constructor for class com.deltax.util.listener.ObservableSignal
 
OperationTimedoutException - exception org.sadun.util.OperationTimedoutException.
 
OperationTimedoutException() - Constructor for class org.sadun.util.OperationTimedoutException
 
OperationTimedoutException(String) - Constructor for class org.sadun.util.OperationTimedoutException
 
OperationTimedoutException(Throwable) - Constructor for class org.sadun.util.OperationTimedoutException
 
OperationTimedoutException(String, Throwable) - Constructor for class org.sadun.util.OperationTimedoutException
 
objectId - Variable in class org.sadun.util.BaseObjectWithId
The id of the object.
objectWithIdMetadataMap - Static variable in class org.sadun.util.BaseObjectWithId
 
onMatch(Set) - Method in class org.sadun.util.LineSet.BaseFilter
 
onMatch(Set) - Method in class org.sadun.util.LineSet.ContainsStringFilter
 
onMatch(Set) - Method in interface org.sadun.util.LineSet.Filter
 
open(Shell, int, int, Properties) - Static method in class org.sadun.swt.widgets.MapEditor
 
open(Shell, Properties) - Static method in class org.sadun.swt.widgets.MapEditor
 
openClass(String) - Method in interface com.deltax.util.ClassFileFinder
Open class data.
openClass(String) - Method in class com.deltax.util.JDK12ClassFileFinder
Open class data.
openClassInJar(String, File) - Method in class com.deltax.util.JDK12ClassFileFinder
Open class data in a JAR file
openResource(String) - Method in class com.deltax.util.JDK12ClassFileFinder
Return the stream associated to a resource in the filesystem, or null if such resource cannot be found.
openResource(String) - Method in interface com.deltax.util.ResourceFileFinder
Return the stream associated to a resource in the filesystem, or null if such resource cannot be found.
operands - Variable in class org.sadun.util.TelnetInputStreamConsumer.CompositeCriterium
The criteria to check.
options - Variable in class org.sadun.util.SymbolTable
A BitSet for the options.
org.sadun.swt.widgets - package org.sadun.swt.widgets
SWT widgets and components.
org.sadun.util - package org.sadun.util
New generic utilities package.
org.sadun.util.ant - package org.sadun.util.ant
Apache ANT related tasks and classes.
org.sadun.util.codegen - package org.sadun.util.codegen
Code-generation related classes.
org.sadun.util.pool - package org.sadun.util.pool
The simple Object Pool package.
org.sadun.util.pool.connection - package org.sadun.util.pool.connection
The Connection pool package.
org.sadun.util.pool.test - package org.sadun.util.pool.test
 
org.sadun.util.pool2 - package org.sadun.util.pool2
NOT COMPLETE YET.
org.sadun.util.pool2.test - package org.sadun.util.pool2.test
 
org.sadun.util.sis - package org.sadun.util.sis
The State Information Support utilities.
org.sadun.util.sql - package org.sadun.util.sql
 
org.sadun.util.swing - package org.sadun.util.swing
 
org.sadun.util.test - package org.sadun.util.test
 
org.sadun.util.tp - package org.sadun.util.tp
The Thread pool implementation package.
org.sadun.util.tp.test - package org.sadun.util.tp.test
 
org.sadun.util.version - package org.sadun.util.version
 
org.sadun.util.watchdog - package org.sadun.util.watchdog
The Watchdog implementation package.
org.sadun.util.watchdog.listeners - package org.sadun.util.watchdog.listeners
 
org.sadun.util.watchdog.mbean - package org.sadun.util.watchdog.mbean
NOT COMPLETE YET The WatchDog JMX instrumentation.
org.sadun.util.watchdog.mbean.action - package org.sadun.util.watchdog.mbean.action
 
org.sadun.util.watchdog.mbean.test - package org.sadun.util.watchdog.mbean.test
 
org.sadun.util.xml - package org.sadun.util.xml
 
org.sadun.util.xml.configuration - package org.sadun.util.xml.configuration
The XML nested configuraton SAX handler and related types.
os - Variable in class org.sadun.util.TelnetInputStream.BasicNVTListener
 

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