Uses of Class
com.arsdigita.globalization.GlobalizedMessage

Packages that use GlobalizedMessage
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.bebop.util Utility classes that are used throughout Bebop. 
com.arsdigita.categorization.util Utility classes specifically for categorization. 
com.arsdigita.formbuilder.ui.editors Embeddable formbuilder editor widgets. 
com.arsdigita.formbuilder.util   
com.arsdigita.mimetypes.util   
com.arsdigita.toolbox.ui Miscellaneous collection of useful Bebop components. 
com.arsdigita.toolbox.util Utility classes specifically for toolbox. 
com.arsdigita.ui.admin Basic user interface components for the administrative UI. 
com.arsdigita.ui.login Internationalized UI classes for user login and registration. 
com.arsdigita.ui.util   
 

Uses of GlobalizedMessage in com.arsdigita.bebop
 

Methods in com.arsdigita.bebop that return GlobalizedMessage
 GlobalizedMessage PropertySheetModel.getGlobalizedLabel()
          Returns the GlobalizedMessage for the current property
 GlobalizedMessage Label.getGlobalizedMessage()
           This should really be getLabel(), but since it was marked STABLE I can't change its return type.
 GlobalizedMessage Label.getGlobalizedMessage(PageState state)
           This should really be getLabel(), but since it was marked STABLE I can't change its return type.
 

Methods in com.arsdigita.bebop with parameters of type GlobalizedMessage
 void Label.setLabel(GlobalizedMessage label, PageState state)
          Sets the text for this label using a GlobalizedMessage.
 void Label.setLabel(GlobalizedMessage label)
          Sets the default text for this Label.
 void FormData.addError(GlobalizedMessage message)
          Reports a validation error on the form as a whole.
 void FormData.addError(String name, GlobalizedMessage message)
          Adds an error message to the ParameterData object associated with the parameter model identified by name.
 

Constructors in com.arsdigita.bebop with parameters of type GlobalizedMessage
Label(GlobalizedMessage label)
           Creates a new label with the specified text.
Label(GlobalizedMessage label, boolean escaping)
           Creates a new label with the specified text and output escaping turned on if escaping is true.
 

Uses of GlobalizedMessage in com.arsdigita.bebop.form
 

Methods in com.arsdigita.bebop.form that return GlobalizedMessage
 GlobalizedMessage Submit.getValue()
           Return the the buttons label.
 

Methods in com.arsdigita.bebop.form with parameters of type GlobalizedMessage
 void Submit.setButtonLabel(GlobalizedMessage buttonLabel)
           Sets the text that will be displayed on the actual button.
 void Widget.addError(GlobalizedMessage mesg)
          Adds an error to be displayed with this parameter.
 

Constructors in com.arsdigita.bebop.form with parameters of type GlobalizedMessage
Submit(GlobalizedMessage label)
           Create a new submit button.
Submit(String name, GlobalizedMessage label)
           Create a new submit button.
 

Uses of GlobalizedMessage in com.arsdigita.bebop.parameters
 

Methods in com.arsdigita.bebop.parameters that return GlobalizedMessage
protected  GlobalizedMessage GlobalizedParameterListener.getError()
           Get the error message for this parameter.
 

Methods in com.arsdigita.bebop.parameters with parameters of type GlobalizedMessage
protected  void GlobalizedParameterListener.setError(GlobalizedMessage error)
           Set the error message for this parameter.
 void ParameterData.addError(GlobalizedMessage message)
           Adds an error to this parameter.
 

Constructors in com.arsdigita.bebop.parameters with parameters of type GlobalizedMessage
TypeCheckValidationListener(Class type, GlobalizedMessage error)
           
StringIsLettersOrDigitsValidationListener(GlobalizedMessage error)
           
StringInRangeValidationListener(int minLength, int maxLength, GlobalizedMessage error)
           
NotWhiteSpaceValidationListener(GlobalizedMessage error)
          Deprecated.  
NotEmptyValidationListener(GlobalizedMessage error)
           
NotNullValidationListener(GlobalizedMessage error)
           
 

Uses of GlobalizedMessage in com.arsdigita.bebop.util
 

Methods in com.arsdigita.bebop.util that return GlobalizedMessage
static GlobalizedMessage GlobalizationUtil.globalize(String key)
           
static GlobalizedMessage GlobalizationUtil.globalize(String key, Object[] args)
           
 

Uses of GlobalizedMessage in com.arsdigita.categorization.util
 

Methods in com.arsdigita.categorization.util that return GlobalizedMessage
static GlobalizedMessage GlobalizationUtil.globalize(String key)
           
static GlobalizedMessage GlobalizationUtil.globalize(String key, Object[] args)
           
 

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

Methods in com.arsdigita.formbuilder.ui.editors that return GlobalizedMessage
protected  GlobalizedMessage TextForm.getTextTitle()
          Subclasses can override this so that it will give the correct name to the text.
protected  GlobalizedMessage HeadingForm.getTextTitle()
          Subclasses can override this so that it will give the correct name to the text.
protected  GlobalizedMessage WidgetLabelForm.getGlobalizedLabelText()
           
 

Uses of GlobalizedMessage in com.arsdigita.formbuilder.util
 

Methods in com.arsdigita.formbuilder.util that return GlobalizedMessage
static GlobalizedMessage GlobalizationUtil.globalize(String key)
           
static GlobalizedMessage GlobalizationUtil.globalize(String key, Object[] args)
           
 

Uses of GlobalizedMessage in com.arsdigita.mimetypes.util
 

Methods in com.arsdigita.mimetypes.util that return GlobalizedMessage
static GlobalizedMessage GlobalizationUtil.globalize(String key)
           
static GlobalizedMessage GlobalizationUtil.globalize(String key, Object[] args)
           
 

Uses of GlobalizedMessage in com.arsdigita.toolbox.ui
 

Methods in com.arsdigita.toolbox.ui that return GlobalizedMessage
 GlobalizedMessage DomainObjectPropertySheet.Property.getGlobalizedLabel()
           
 GlobalizedMessage DataTable.globalize(String key)
          Globalizes the specified key.
 

Methods in com.arsdigita.toolbox.ui with parameters of type GlobalizedMessage
 void SelectionPanel.setAdd(GlobalizedMessage message, Form form)
           
 void SelectionPanel.setEdit(GlobalizedMessage message, Form form)
           
 void SelectionPanel.setDelete(GlobalizedMessage message, Form form)
           
 void Section.setHeading(GlobalizedMessage message)
           
 void DomainObjectPropertySheet.add(GlobalizedMessage label, String attribute)
          Add a new property to the sheet.
 void DomainObjectPropertySheet.add(GlobalizedMessage label, String attribute, DomainObjectPropertySheet.AttributeFormatter f)
          Add a new property to the sheet.
 

Constructors in com.arsdigita.toolbox.ui with parameters of type GlobalizedMessage
SelectionPanel(GlobalizedMessage title, Component selector)
           
SelectionPanel(GlobalizedMessage title, Component selector, SingleSelectionModel model)
           
SelectionPanel(GlobalizedMessage title, TreeModelBuilder builder)
           
SelectionPanel(GlobalizedMessage title, ListModelBuilder builder)
           
PropertyList.Property(GlobalizedMessage title, String value)
           
PropertyList.Property(GlobalizedMessage title, GlobalizedMessage value)
           
PropertyList.Property(String title, GlobalizedMessage value)
           
Section(GlobalizedMessage heading, Component body)
           
Section(GlobalizedMessage heading)
           
DomainObjectPropertySheet.Property(GlobalizedMessage l, String a, DomainObjectPropertySheet.AttributeFormatter f)
           
 

Uses of GlobalizedMessage in com.arsdigita.toolbox.util
 

Methods in com.arsdigita.toolbox.util that return GlobalizedMessage
static GlobalizedMessage GlobalizationUtil.globalize(String key)
           
static GlobalizedMessage GlobalizationUtil.globalize(String key, Object[] args)
           
 

Uses of GlobalizedMessage in com.arsdigita.ui.admin
 

Methods in com.arsdigita.ui.admin with parameters of type GlobalizedMessage
 void ContextBar.add(GlobalizedMessage name, String url)
          Deprecated. Add a link to the ContextBar.
 void ContextBar.add(GlobalizedMessage name)
          Deprecated. Add a simple label to the ContextBar.
 

Uses of GlobalizedMessage in com.arsdigita.ui.login
 

Fields in com.arsdigita.ui.login declared as GlobalizedMessage
static GlobalizedMessage LoginConstants.SUBMIT
           
static GlobalizedMessage LoginConstants.PRIMARY_EMAIL
           
static GlobalizedMessage LoginConstants.ADDITIONAL_EMAIL
           
static GlobalizedMessage LoginConstants.SCREEN_NAME
           
static GlobalizedMessage LoginConstants.FIRST_NAME
           
static GlobalizedMessage LoginConstants.LAST_NAME
           
static GlobalizedMessage LoginConstants.PASSWORD
           
static GlobalizedMessage LoginConstants.PASSWORD_CONFIRMATION
           
static GlobalizedMessage LoginConstants.PASSWORD_QUESTION
           
static GlobalizedMessage LoginConstants.PASSWORD_ANSWER
           
static GlobalizedMessage LoginConstants.URL
           
static GlobalizedMessage LoginConstants.BIO
           
static GlobalizedMessage LoginConstants.ERROR_DUPLICATE_SN
           
static GlobalizedMessage LoginConstants.ERROR_DUPLICATE_EMAIL
           
static GlobalizedMessage LoginConstants.ERROR_MISMATCH_PASSWORD
           
static GlobalizedMessage LoginConstants.ERROR_BAD_PASSWORD
           
static GlobalizedMessage LoginConstants.ERROR_LOGIN_FAIL
           
static GlobalizedMessage LoginConstants.ERROR_BAD_ANSWER
           
static GlobalizedMessage LoginConstants.ERROR_BAD_EMAIL
           
 

Uses of GlobalizedMessage in com.arsdigita.ui.util
 

Methods in com.arsdigita.ui.util that return GlobalizedMessage
static GlobalizedMessage GlobalizationUtil.globalize(String key)
           
static GlobalizedMessage GlobalizationUtil.globalize(String key, Object[] args)
           
 



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