org.apache.tapestry5.model
Interface ParameterModel

All Known Implementing Classes:
ParameterModelImpl

public interface ParameterModel

Model for a formal parameter of a component.

See Also:
Parameter

Method Summary
 String getDefaultBindingPrefix()
          The default binding prefix for the parameter, usually "prop".
 String getName()
          The name of the parameter.
 boolean isAllowNull()
          If true, then no check is needed.
 boolean isRequired()
          If true, the parameter is required.
 

Method Detail

getName

String getName()
The name of the parameter.


isRequired

boolean isRequired()
If true, the parameter is required.


isAllowNull

boolean isAllowNull()
If true, then no check is needed. If false, then the bound value must not be null.


getDefaultBindingPrefix

String getDefaultBindingPrefix()
The default binding prefix for the parameter, usually "prop".



Copyright © 2006-2009 Apache Software Foundation. All Rights Reserved.