Uses of Class
com.arsdigita.bebop.parameters.ParameterModel

Packages that use ParameterModel
com.arsdigita.bebop A set of server-side user interface components for web applications. 
com.arsdigita.bebop.form Provides a set of server-side user interface components for obtaining user input. 
com.arsdigita.bebop.parameters These classes represent all the ParameterModels and ValidationListeners i.e., all classes that handle obtaining and validating the state from the HTTP request and transforming them into Java objects. 
com.arsdigita.formbuilder The Form Builder service provides the ability to build simple forms with a web user interface. 
com.arsdigita.formbuilder.ui The Form Builder UI provides a number of embeddable bebop components to facilitate integration of the form builder service with applications. 
com.arsdigita.formbuilder.ui.editors Embeddable formbuilder editor widgets. 
com.arsdigita.kernel.ui Bebop widgets that display kernel objects. 
com.arsdigita.search.ui   
com.arsdigita.search.ui.filters   
com.arsdigita.toolbox.ui Miscellaneous collection of useful Bebop components. 
com.arsdigita.ui.login Internationalized UI classes for user login and registration. 
com.arsdigita.util.ui   
 

Uses of ParameterModel in com.arsdigita.bebop
 

Methods in com.arsdigita.bebop that return ParameterModel
 ParameterModel MapComponentSelectionModel.getStateParameter()
          Returns the state parameter that will be used to keep track of the currently selected key.
 ParameterModel DefaultSingleSelectionModel.getStateParameter()
           
 ParameterModel ParameterSingleSelectionModel.getStateParameter()
           
 ParameterModel SingleSelectionModel.getStateParameter()
          Returns the state parameter that will be used to keep track of the currently selected key.
 

Methods in com.arsdigita.bebop with parameters of type ParameterModel
 Object FormData.get(ParameterModel m)
          Deprecated. Use get(m.getName()) instead, and then manually check for model identity
 void FormModel.addFormParam(ParameterModel parameter)
          Adds a parameter model to the form model.
 void FormModel.excludeFormParameterFromExport(ParameterModel parameter)
          Adds a parameter model to the list of parameters that should not be exported when the form is rendered.
 boolean FormModel.containsFormParam(ParameterModel p)
          Determines whether the form model contains the specified parameter model.
 void Form.excludeParameterFromExport(ParameterModel model)
          TODO
 void Page.addGlobalStateParam(ParameterModel p)
          Adds a global state parameter to this page.
 void Page.addComponentStateParam(Component c, ParameterModel p)
          Registers a state parameter for a component.
 void PageState.setValue(ParameterModel p, Object value)
          Set the value of the state parameter p.
 Object PageState.getValue(ParameterModel p)
          Get the value of state parameter p.
 

Constructors in com.arsdigita.bebop with parameters of type ParameterModel
FormValidationException(ParameterModel parameter, String message)
           
FormValidationException(ParameterModel parameter, String message, Throwable rootCause)
           
ParameterSingleSelectionModel(ParameterModel m)
          Constructs a new ParameterSingleSelectionModel.
Tree.TreeSingleSelectionModel(ParameterModel m)
          Deprecated.  
 

Uses of ParameterModel in com.arsdigita.bebop.form
 

Methods in com.arsdigita.bebop.form that return ParameterModel
 ParameterModel Widget.getParameterModel()
          Allows access to underlying parameterModel.
 

Methods in com.arsdigita.bebop.form with parameters of type ParameterModel
 void Widget.setParameterModel(ParameterModel parameterModel)
          The ParameterModel is normally set via the constructors.
 

Constructors in com.arsdigita.bebop.form with parameters of type ParameterModel
Time(ParameterModel model)
          Constructor.
Time(ParameterModel model, boolean showSeconds)
          Constructor.
Reset(ParameterModel model)
           
ImageSubmit(ParameterModel model)
           
FileUpload(ParameterModel model)
           
FileUpload(ParameterModel model, boolean validateInputFile)
           
Deditor(ParameterModel model)
          Deprecated.  
DateTime(ParameterModel model)
          Construct a new DateTime.
DateTime(ParameterModel model, boolean showSeconds)
          Construct a new DateTime.
DHTMLEditor(ParameterModel model)
           
DHTMLEditor(ParameterModel model, DHTMLEditor.Config config)
           
Date(ParameterModel model)
          Construct a new Date.
Password(ParameterModel model)
           
Hidden(ParameterModel model)
           
Submit(ParameterModel model)
          Create a new submit button.
RadioGroup(ParameterModel model)
           
TextArea(ParameterModel model)
           
TextArea(ParameterModel model, int rows, int cols, int wrap)
          Convenience constructor
OptionGroup(ParameterModel model)
          The ParameterModel for mutliple OptionGroups is always an array parameter
Select(ParameterModel model)
           
SingleSelect(ParameterModel model)
          Creates a new SingleSelect widget, using the given parameter model.
Widget(ParameterModel model)
          Constructs a new widget.
TextField(ParameterModel model)
           
 

Uses of ParameterModel in com.arsdigita.bebop.parameters
 

Subclasses of ParameterModel in com.arsdigita.bebop.parameters
 class ArrayParameter
          Reads an array of values and converts them to a Java object array.
 class BigDecimalParameter
          A class which represents a BigDecimal
 class BigIntegerParameter
          A class which represents a BigInteger
 class BitSetParameter
          Encode and decode a bit set as a request parameter.
 class BooleanParameter
          A class that represents the model for boolean form parameters.
 class DateParameter
          A class that represents the model for date form parameters.
 class DateTimeParameter
          A class that represents the model for date and time form parameters.
 class DoubleParameter
          A class that represents the model for number form parameters.
 class EmailParameter
          An email address parameter.
 class EnumerationParameter
          A class that represents the model for number form parameters.
 class FloatParameter
          A class that represents the model for number form parameters.
 class IntegerParameter
          A class that represents the model for number form parameters.
 class LongParameter
          A class that represents the model for number form parameters.
 class NumberParameter
          A class that represents the model for number form parameters.
 class StringParameter
          A string parameter.
 class TimeParameter
          A class that represents the model for a time form parameter.
 class TrimmedStringParameter
          A class that represents the model for String form parameters.
 class URLParameter
          A class that represents the model for URL form parameters.
 

Methods in com.arsdigita.bebop.parameters that return ParameterModel
 ParameterModel ArrayParameter.getElementParameter()
          Return the parameter model that transforms and validates individual entries in the array.
 ParameterModel ParameterData.getModel()
          Return the ParameterModel underlying this parameter.
 

Methods in com.arsdigita.bebop.parameters with parameters of type ParameterModel
 void ArrayParameter.setElementParameter(ParameterModel v)
          Set the parameter model that transforms and validates individual entries in the array.
 

Constructors in com.arsdigita.bebop.parameters with parameters of type ParameterModel
ArrayParameter(ParameterModel element)
          Create a new array parameter.
ParameterData(ParameterModel model, Object value)
          Construct a new ParameterData object with the specified name and value.
 

Uses of ParameterModel in com.arsdigita.formbuilder
 

Methods in com.arsdigita.formbuilder that return ParameterModel
protected  ParameterModel PersistentWidget.instantiateParameterModel()
           
 ParameterModel AttributeMetaData.getParameterModel()
          This method may return null.
 

Uses of ParameterModel in com.arsdigita.formbuilder.ui
 

Methods in com.arsdigita.formbuilder.ui that return ParameterModel
 ParameterModel DecimalSingleSelectionModel.getStateParameter()
           
 

Uses of ParameterModel in com.arsdigita.formbuilder.ui.editors
 

Methods in com.arsdigita.formbuilder.ui.editors with parameters of type ParameterModel
protected  void WidgetForm.automaticallySetName(ParameterModel model)
          If this is called then the value of the widget that is used for the passed in model is used to auto-generate the value of the "name" value.
 

Uses of ParameterModel in com.arsdigita.kernel.ui
 

Methods in com.arsdigita.kernel.ui that return ParameterModel
 ParameterModel ACSObjectSelectionModel.getStateParameter()
          Return the state parameter which will be used to keep track of the currently selected key.
 

Uses of ParameterModel in com.arsdigita.search.ui
 

Methods in com.arsdigita.search.ui that return ParameterModel
 ParameterModel FilterWidget.getParameter()
          Returns the component's state parameter
 

Constructors in com.arsdigita.search.ui with parameters of type ParameterModel
FilterWidget(FilterType type, ParameterModel param)
          Creates a filter component
 

Uses of ParameterModel in com.arsdigita.search.ui.filters
 

Subclasses of ParameterModel in com.arsdigita.search.ui.filters
 class DateRangeParameter
           
 

Uses of ParameterModel in com.arsdigita.toolbox.ui
 

Subclasses of ParameterModel in com.arsdigita.toolbox.ui
 class OIDParameter
           
 

Constructors in com.arsdigita.toolbox.ui with parameters of type ParameterModel
TextTypeWidget(ParameterModel textTypeParameter)
          Constructor.
TextTypeWidget(ParameterModel textTypeParameter, String defaultType)
          Constructor with one additional parameter to set the correct default value, which should be one of the constants defined by the MessageType interface.
 

Uses of ParameterModel in com.arsdigita.ui.login
 

Methods in com.arsdigita.ui.login that return ParameterModel
 ParameterModel UserSingleSelectionModel.getStateParameter()
           
 

Uses of ParameterModel in com.arsdigita.util.ui
 

Methods in com.arsdigita.util.ui that return ParameterModel
 ParameterModel RequestLocalSelectionModel.getStateParameter()
          Deprecated.  
 



Copyright (c) 2004 Red Hat, Inc. Corporation. All Rights Reserved. Generated at July 20 2004:2337 UTC