com.ibm.portal.pcm.dialog.model
Interface DialogDefinitionLocator<E extends java.lang.Object & DialogDefinition>

Type Parameters:
E -
All Superinterfaces:
Locator<E>

public interface DialogDefinitionLocator<E extends java.lang.Object & DialogDefinition>
extends Locator<E>

A locator for finding DialogDefinitions in a dialog model. This locator interface is optionally implemented by DialogModel implementations.

Since:
8.0.0
See Also:
DialogDefinition

Method Summary
 E findByName(java.lang.String aName)
          Finds the dialog with the given name.
 
Methods inherited from interface com.ibm.portal.Locator
findByID, findByUniqueName
 

Method Detail

findByName

E findByName(java.lang.String aName)
Finds the dialog with the given name.

Parameters:
aName - The name of the dialog to search for. Must not be null.
Returns:
The DialogDefinition with the given name or null if it does not exist.