| org.springframework.webflow.definition.Annotated
All known Subclasses: org.springframework.webflow.engine.AnnotatedObject,
Annotated | public interface Annotated (Code) | | An interface to be implemented by objects that are annotated with attributes
they wish to expose to clients.
author: Keith Donald author: Erwin Vervaet |
Method Summary | |
public AttributeMap | getAttributes() Returns an immutable attribute map containing the attributes annotating
this object. | public String | getCaption() Returns a short summary of this object, suitable for display as
an icon caption or tool tip. | public String | getDescription() Returns a longer, more detailed description of this object. |
getAttributes | public AttributeMap getAttributes()(Code) | | Returns an immutable attribute map containing the attributes annotating
this object. These attributes provide descriptive characteristics or
properties that may affect object behavior.
the attribute map |
getCaption | public String getCaption()(Code) | | Returns a short summary of this object, suitable for display as
an icon caption or tool tip.
the caption |
getDescription | public String getDescription()(Code) | | Returns a longer, more detailed description of this object.
the description |
|
|