| |
|
| java.lang.Object com.sun.rave.designtime.faces.ResolveResult
ResolveResult | public class ResolveResult (Code) | | This class wraps the return value from FacesDesignContext.resolveBindingExprToBean(String expr).
The passed expression will be resolved to the deepest DesignBean instance within the context.
Any remaining expression will be returned in the 'remainder' property of this object.
author: Joe Nuxoll version: 1.0 See Also: FacesDesignContext.resolveBindingExprToBean(String) |
Constructor Summary | |
public | ResolveResult(DesignBean designBean, String remainder) Constructs a ResolveResult with the specified DesignBean and remainder expression. | public | ResolveResult(String remainder) Constructs a ResolveResult with the specified remainder expression. |
designBean | protected DesignBean designBean(Code) | | protected storage for the 'designBean' property
|
remainder | protected String remainder(Code) | | protected storage for the 'remainder' property
|
ResolveResult | public ResolveResult(DesignBean designBean, String remainder)(Code) | | Constructs a ResolveResult with the specified DesignBean and remainder expression.
Parameters: designBean - The deepest resolved DesignBean Parameters: remainder - The remaining expression from the resolving process |
ResolveResult | public ResolveResult(String remainder)(Code) | | Constructs a ResolveResult with the specified remainder expression.
Parameters: remainder - The remaining expression from the resolving process |
getDesignBean | public DesignBean getDesignBean()(Code) | | Rertuns the deepest resolved DesignBean
The deepest resolved DesignBean |
getRemainder | public String getRemainder()(Code) | | Rertuns the remaining expression that did could not be resolved to a DesignBean
The remaining expression that did could not be resolved to a DesignBean |
|
|
|