A C E F G O R S V

A

AbstractFactory - Interface in org.gjt.lindfors.pattern
Abstract factory provides an interface for creating families of related or dependent objects without specifying their concrete classes.

C

Command - Interface in org.gjt.lindfors.pattern
Command encapsulates a request as an object, thereby letting you parameterize clients with different requests, queue or log requests, and support undoable operations.
CommandInvoker - Interface in org.gjt.lindfors.pattern
Acts as the Invoker in Command pattern.

E

execute() - Method in interface org.gjt.lindfors.pattern.Command
Executes the callback command on the receiver.

F

Facade - Interface in org.gjt.lindfors.pattern
Provide a unified interface to a set of interfaces in a subsystem.

G

getCallbackObject() - Method in interface org.gjt.lindfors.pattern.Visitor
Returns the callback method abstracted as a Command object.
getContext() - Method in interface org.gjt.lindfors.pattern.Strategy
Returns the context object for this strategy implementation.

O

org.gjt.lindfors.pattern - package org.gjt.lindfors.pattern
Support for using design patterns.

R

registerCommands(Properties) - Method in interface org.gjt.lindfors.pattern.CommandInvoker
Used by the clients (which can be callback targets or other objects) to register concrete Command implementations to this Invoker.

S

Strategy - Interface in org.gjt.lindfors.pattern
Strategy defines a family of algorithms, encapsulates each one, and make them interchangeable.
StrategyContext - Interface in org.gjt.lindfors.pattern
Strategy context maintains a reference to a Strategy object.

V

Visitor - Interface in org.gjt.lindfors.pattern
Represent an operation to be performed on the elements of an object structure.

A C E F G O R S V