Uses of Interface
org.eclipse.net4j.util.event.INotifier

Packages that use INotifier
org.eclipse.net4j.util.cache A generic caching and memory monitoring framework. 
org.eclipse.net4j.util.collection Additional collection-like interfaces and classes. 
org.eclipse.net4j.util.concurrent Utility interfaces and classes commonly useful in concurrent programming. 
org.eclipse.net4j.util.container A framework of notifying collections and wiring containers. 
org.eclipse.net4j.util.container.delegate Hybrid interfaces of notifying containers and the Java Collection Framework. 
org.eclipse.net4j.util.event A framework for sending of and listening to events. 
org.eclipse.net4j.util.fsm A framework for finite state machines
org.eclipse.net4j.util.lifecycle A framework for components with a simple lifecycle. 
org.eclipse.net4j.util.om.monitor Interfaces and classes for platform-independent progress monitoring. 
org.eclipse.net4j.util.om.pref Interfaces and classes for platform-independent preference management. 
org.eclipse.net4j.util.options A framework for option containers that fire change events. 
org.eclipse.net4j.util.ref A framework for memory-sensitive keyed references and value maps. 
org.eclipse.net4j.util.registry Interfaces and classes for general purpose registries. 
org.eclipse.net4j.util.security Interfaces and classes for security, negotiation, authentication, authorization and cryptography. 
org.eclipse.net4j.util.ui Reusable UI components. 
org.eclipse.net4j.util.ui.container An element wizard framework for managed containers. 
org.eclipse.net4j.util.ui.widgets A library with reusable widgets. 
 

Uses of INotifier in org.eclipse.net4j.util.cache
 

Subinterfaces of INotifier in org.eclipse.net4j.util.cache
 interface ICacheMonitor
           
 

Classes in org.eclipse.net4j.util.cache that implement INotifier
 class Cache<E>
           
 class CacheMonitor
           
 

Uses of INotifier in org.eclipse.net4j.util.collection
 

Subinterfaces of INotifier in org.eclipse.net4j.util.collection
 interface IHistory<T>
           
 

Classes in org.eclipse.net4j.util.collection that implement INotifier
 class History<T>
           
 class PreferenceHistory
           
 

Uses of INotifier in org.eclipse.net4j.util.concurrent
 

Classes in org.eclipse.net4j.util.concurrent that implement INotifier
 class PriorityQueueRunner
           
 class QueueRunner
           
 class QueueRunner2<T extends Runnable>
           
 class QueueWorker<E>
           
 class QueueWorkerWorkSerializer
           
 class RWLockManager<OBJECT,CONTEXT>
          Deprecated. Use RWOLockManager
 class RWOLockManager<OBJECT,CONTEXT>
          Keeps track of locks on objects.
 class TimerLifecycle
           
 class Worker
           
 

Uses of INotifier in org.eclipse.net4j.util.container
 

Subinterfaces of INotifier in org.eclipse.net4j.util.container
 interface IContainer<E>
          Contains a number of elements and notifies about element addition and removal.
static interface IContainer.Modifiable<E>
          A container with additional methods to add or remove elements.
 interface IManagedContainer
          A container that populates itself by means of element factories and post processors .
 interface IPluginContainer
          A managed container that is configured by the extension registry .
 

Classes in org.eclipse.net4j.util.container that implement INotifier
 class Container<E>
          An abstract base implementation of a container with a lifecycle.
 class ManagedContainer
          A default implementation of a managed container.
 class SetContainer<E>
          An implementation of a container that stores its elements in a set.
 

Methods in org.eclipse.net4j.util.container that return INotifier
 INotifier LifecycleEventConverter.getOwner()
           
 

Uses of INotifier in org.eclipse.net4j.util.container.delegate
 

Subinterfaces of INotifier in org.eclipse.net4j.util.container.delegate
 interface IContainerBlockingQueue<E>
          A container that is a BlockingQueue.
 interface IContainerCollection<E>
          A container that is a Collection.
 interface IContainerList<E>
          A container that is a List.
 interface IContainerMap<K,V>
          A container (of map entries) that is a Map.
 interface IContainerQueue<E>
          A container that is a Queue.
 interface IContainerSet<E>
          A container that is a Set.
 interface IContainerSortedSet<E>
          A container that is a SortedSet.
 

Classes in org.eclipse.net4j.util.container.delegate that implement INotifier
 class AbstractDelegator<E>
          A delegating base class for containers.
 class ContainerBlockingQueue<E>
          A default implementation of a container blocking queue.
 class ContainerCollection<E>
          A default implementation of a container collection.
 class ContainerList<E>
          A default implementation of a container list.
 class ContainerMap<K,V>
          A default implementation of a container map.
 class ContainerQueue<E>
          A default implementation of a container queue.
 class ContainerSet<E>
          A default implementation of a container set.
 class ContainerSortedSet<E>
          A default implementation of a container sorted set.
 

Uses of INotifier in org.eclipse.net4j.util.event
 

Classes in org.eclipse.net4j.util.event that implement INotifier
 class ExecutorServiceNotifier
          Deprecated. 
static class ExecutorServiceNotifier.ThreadPool
          Deprecated. 
 class Notifier
          A default implementation of a notifier.
 class ValueNotifier<VALUE>
          A notifier with an ID and a single value.
 

Methods in org.eclipse.net4j.util.event that return INotifier
 INotifier Event.getSource()
           
 INotifier FinishedEvent.getSource()
           
 INotifier IEvent.getSource()
           
 

Methods in org.eclipse.net4j.util.event with parameters of type INotifier
protected  void ThrowableEventAdapter.onThrowable(INotifier source, Throwable t)
           
protected  void ThrowableEventAdapter.ToPrintStream.onThrowable(INotifier source, Throwable t)
           
 

Constructors in org.eclipse.net4j.util.event with parameters of type INotifier
Event(INotifier notifier)
           
ThrowableEvent(INotifier notifier, Throwable throwable)
           
 

Uses of INotifier in org.eclipse.net4j.util.fsm
 

Classes in org.eclipse.net4j.util.fsm that implement INotifier
 class FiniteStateMachine<STATE extends Enum<?>,EVENT extends Enum<?>,SUBJECT>
          A finite state machine that is based on a matrix of transitions.
 

Methods in org.eclipse.net4j.util.fsm that return INotifier
 INotifier FiniteStateMachine.StateChangedEvent.getSource()
           
 

Uses of INotifier in org.eclipse.net4j.util.lifecycle
 

Subinterfaces of INotifier in org.eclipse.net4j.util.lifecycle
 interface ILifecycle
          An entity that has a well-defined lifecycle and can be activated or deactivated.
 

Classes in org.eclipse.net4j.util.lifecycle that implement INotifier
 class Lifecycle
          A default implementation of an entity with a lifecycle.
 class ShareableLifecycle
          A lifecycle entity with a reference count that can be activated multiple times.
 

Uses of INotifier in org.eclipse.net4j.util.om.monitor
 

Classes in org.eclipse.net4j.util.om.monitor that implement INotifier
 class NotifyingMonitor
           
 

Constructors in org.eclipse.net4j.util.om.monitor with parameters of type INotifier
NotifyingMonitor.ProgressEvent(INotifier notifier, double totalWork, double work)
           
 

Uses of INotifier in org.eclipse.net4j.util.om.pref
 

Subinterfaces of INotifier in org.eclipse.net4j.util.om.pref
 interface OMPreferences
           
 

Uses of INotifier in org.eclipse.net4j.util.options
 

Subinterfaces of INotifier in org.eclipse.net4j.util.options
 interface IOptions
          Encapsulates a set of notifying configuration options.
 

Uses of INotifier in org.eclipse.net4j.util.ref
 

Classes in org.eclipse.net4j.util.ref that implement INotifier
 class ReferenceQueueWorker<T>
           
 

Uses of INotifier in org.eclipse.net4j.util.registry
 

Subinterfaces of INotifier in org.eclipse.net4j.util.registry
 interface IRegistry<K,V>
           
 

Classes in org.eclipse.net4j.util.registry that implement INotifier
 class DelegatingRegistry<K,V>
          Implementation note: AbstractDelegatingRegistry does not preserve the "modifyable view" contract of Map.entrySet() as well as of Map.keySet(), i.e. they are disconnected sets and modifications applied to them are not applied to their underlying AbstractDelegatingRegistry.
 class HashMapDelegatingRegistry<K,V>
           
 class HashMapRegistry<K,V>
           
 class Registry<K,V>
           
 class UnmodifiableRegistry<K,V>
           
 

Uses of INotifier in org.eclipse.net4j.util.security
 

Classes in org.eclipse.net4j.util.security that implement INotifier
 class ChallengeNegotiator
           
 class ChallengeResponseNegotiator
           
 class FileUserManager
           
 class Negotiator<STATE extends Enum<?>,EVENT extends Enum<?>>
           
 class Randomizer
           
 class ResponseNegotiator
           
 class UserManager
           
 class UserManagerAuthenticator
           
 

Uses of INotifier in org.eclipse.net4j.util.ui
 

Classes in org.eclipse.net4j.util.ui that implement INotifier
 class UIQueueRunner
           
 

Uses of INotifier in org.eclipse.net4j.util.ui.container
 

Classes in org.eclipse.net4j.util.ui.container that implement INotifier
 class ElementWizard
           
 

Methods in org.eclipse.net4j.util.ui.container that return INotifier
 INotifier ElementWizardComposite.getNotifier()
           
 

Uses of INotifier in org.eclipse.net4j.util.ui.widgets
 

Classes in org.eclipse.net4j.util.ui.widgets that implement INotifier
 class SashComposite
           
 



Copyright (c) 2011, 2012 Eike Stepper (Berlin, Germany) and others.