RSE
Release 3.3

Uses of Interface
org.eclipse.rse.ui.validators.ISystemValidator

Packages that use ISystemValidator
org.eclipse.rse.files.ui.widgets   
org.eclipse.rse.shells.ui.view   
org.eclipse.rse.subsystems.files.core.subsystems   
org.eclipse.rse.subsystems.files.core.util   
org.eclipse.rse.subsystems.processes.core.subsystem.impl   
org.eclipse.rse.ui   
org.eclipse.rse.ui.dialogs   
org.eclipse.rse.ui.filters   
org.eclipse.rse.ui.filters.dialogs   
org.eclipse.rse.ui.propertypages   
org.eclipse.rse.ui.subsystems Application programming interface for managing the user interface for subsystem actions. 
org.eclipse.rse.ui.validators   
org.eclipse.rse.ui.view   
org.eclipse.rse.ui.widgets   
org.eclipse.rse.ui.wizards   
 

Uses of ISystemValidator in org.eclipse.rse.files.ui.widgets
 

Fields in org.eclipse.rse.files.ui.widgets declared as ISystemValidator
protected  ISystemValidator SystemFileFilterStringEditPane.fileValidator
           
protected  ISystemValidator SystemFileFilterStringEditPane.pathValidator
           
 

Uses of ISystemValidator in org.eclipse.rse.shells.ui.view
 

Fields in org.eclipse.rse.shells.ui.view declared as ISystemValidator
protected  ISystemValidator SystemCommandEditor.cmdValidator
           
 

Methods in org.eclipse.rse.shells.ui.view with parameters of type ISystemValidator
 void SystemCommandEditor.setCommandValidator(ISystemValidator cmdValidator)
          Set the command validator to validate contents per keystroke
 

Uses of ISystemValidator in org.eclipse.rse.subsystems.files.core.subsystems
 

Methods in org.eclipse.rse.subsystems.files.core.subsystems that return ISystemValidator
 ISystemValidator IRemoteFileSubSystemConfiguration.getFileFilterStringValidator()
          Return validator used in filter string dialog for the file part of the filter string
 ISystemValidator RemoteFileSubSystemConfiguration.getFileFilterStringValidator()
          Return validator used in filter string dialog for the file part of the filter string By default, returns ValidatorFileFilterString.
 ISystemValidator IRemoteFileSubSystemConfiguration.getPathValidator()
          Return validator used in filter string dialog for the path part of the filter string
 ISystemValidator RemoteFileSubSystemConfiguration.getPathValidator()
          Return validator used in filter string dialog for the path part of the filter string.
 

Uses of ISystemValidator in org.eclipse.rse.subsystems.files.core.util
 

Classes in org.eclipse.rse.subsystems.files.core.util that implement ISystemValidator
 class ValidatorFileFilterString
          This class is used in dialogs that prompt for file filter strings.
 class ValidatorFileUniqueName
          This class is used in dialogs that prompt for file or folder names, and those names need to be unique within a given folder.
 

Uses of ISystemValidator in org.eclipse.rse.subsystems.processes.core.subsystem.impl
 

Methods in org.eclipse.rse.subsystems.processes.core.subsystem.impl that return ISystemValidator
 ISystemValidator RemoteProcessSubSystemConfiguration.getPortValidator()
           
 

Uses of ISystemValidator in org.eclipse.rse.ui
 

Fields in org.eclipse.rse.ui declared as ISystemValidator
protected  ISystemValidator SystemConnectionForm.hostValidator
           
protected  ISystemValidator[] SystemConnectionForm.nameValidators
           
protected  ISystemValidator SystemConnectionForm.userIdValidator
           
 

Methods in org.eclipse.rse.ui that return ISystemValidator
static ISystemValidator SystemConnectionForm.getConnectionNameValidator(IHost conn)
          Reusable method to return a name validator for renaming a connection.
static ISystemValidator SystemConnectionForm.getConnectionNameValidator(ISystemProfile profile)
          Reusable method to return a name validator for renaming a connection.
static ISystemValidator[] SystemConnectionForm.getConnectionNameValidators()
          Reusable method to return name validators for creating a connection.
 

Methods in org.eclipse.rse.ui with parameters of type ISystemValidator
 void SystemConnectionForm.setConnectionNameValidators(ISystemValidator[] v)
          Call this to specify a validator for the connection name.
 void SystemConnectionForm.setHostNameValidator(ISystemValidator v)
          Call this to specify a validator for the hostname.
 void SystemConnectionForm.setUserIdValidator(ISystemValidator v)
          Call this to specify a validator for the userId.
 

Uses of ISystemValidator in org.eclipse.rse.ui.dialogs
 

Fields in org.eclipse.rse.ui.dialogs declared as ISystemValidator
protected  ISystemValidator SystemPromptDialog.outputObjectValidator
           
 

Methods in org.eclipse.rse.ui.dialogs with parameters of type ISystemValidator
protected  ValidatorUniqueString SystemRenameSingleDialog.getUniqueNameValidator(Object inputElement, ISystemValidator nameValidator)
          Given an input element and externally-suppplied name validator for it, determine if we need to augment that validator with one that will check for uniqueness, and if so create and return that uniqueness validator
 void SystemRenameSingleDialog.setNameValidator(ISystemValidator nameValidator)
          Set the validator for the new name,as supplied by the adaptor for name checking.
 void SystemPromptDialog.setOutputObjectValidator(ISystemValidator outputObjectValidator)
          If validation of the output object is desired, set the validator here.
 void ISystemPasswordPromptDialog.setPasswordValidator(ISystemValidator v)
          Call this to specify a validator for the password.
 void SystemPasswordPromptDialog.setPasswordValidator(ISystemValidator v)
          Sets the validator for the password.
 void ISystemPasswordPromptDialog.setUserIdValidator(ISystemValidator v)
          Call this to specify a validator for the userId.
 void SystemPasswordPromptDialog.setUserIdValidator(ISystemValidator v)
          Sets the validator for the userId.
 

Constructors in org.eclipse.rse.ui.dialogs with parameters of type ISystemValidator
SystemRenameSingleDialog(Shell shell, boolean copyCollisionMode, Object inputObject, ISystemValidator nameValidator)
          Constructor with an input object and validator This constructor is in copy/move dialogs when there is a collision
SystemRenameSingleDialog(Shell shell, boolean copyCollisionMode, Object inputObject, ISystemValidator nameValidator, List nameInUse)
          Constructor with an input object and validator This constructor is in copy/move dialogs when there is a collision
 

Uses of ISystemValidator in org.eclipse.rse.ui.filters
 

Fields in org.eclipse.rse.ui.filters declared as ISystemValidator
protected  ISystemValidator SystemChangeFilterPane.filterStringValidator
           
 

Methods in org.eclipse.rse.ui.filters that return ISystemValidator
 ISystemValidator SystemChangeFilterPane.getFilterStringValidator()
          Return the result of SystemChangeFilterPane.setFilterStringValidator(ISystemValidator).
 

Methods in org.eclipse.rse.ui.filters with parameters of type ISystemValidator
 void SystemChangeFilterPane.setFilterStringValidator(ISystemValidator v)
          Configuration method
Call this to specify a validator for the filter string.
 

Uses of ISystemValidator in org.eclipse.rse.ui.filters.dialogs
 

Fields in org.eclipse.rse.ui.filters.dialogs declared as ISystemValidator
protected  ISystemValidator SystemNewFilterWizardNamePage.nameValidator
           
protected  ISystemValidator[] SystemNewFilterWizardNamePage.nameValidators
           
 

Methods in org.eclipse.rse.ui.filters.dialogs that return ISystemValidator
protected  ISystemValidator SystemNewFilterWizard.getFilterNameValidator(ISystemFilterContainer container)
          Extendable point for child classes.
static ISystemValidator SystemNewFilterWizard.getFilterNameValidator(ISystemFilterContainer container, ISystemFilter filter)
          Reusable method to return a name validator for renaming a filter.
 ISystemValidator SystemChangeFilterDialog.getFilterStringValidator()
          Return the result of SystemChangeFilterDialog.setFilterStringValidator(ISystemValidator).
 

Methods in org.eclipse.rse.ui.filters.dialogs with parameters of type ISystemValidator
 void SystemNewFilterWizardNamePage.setAllowFilterPoolSelection(ISystemFilterPool[] poolsToSelectFrom, ISystemValidator[] nameValidators)
          Call if you want to allow the user to select the filter pool to create this filter in.
 void SystemNewFilterWizardNamePage.setAllowFilterPoolSelection(ISystemFilterPoolWrapperInformation poolWrappersToSelectFrom, ISystemValidator[] nameValidators)
          This is an alternative to SystemNewFilterWizardNamePage.setAllowFilterPoolSelection(ISystemFilterPool[], ISystemValidator[]) If you want to prompt the user for the parent filter pool to create this filter in, but want to not use the term "pool" say, you can use an array of euphamisms.
 void SystemNewFilterWizardNamePage.setFilterNameValidator(ISystemValidator nameValidator)
          Set the validator to use to verify the filter name is correct
 void SystemChangeFilterDialog.setFilterStringValidator(ISystemValidator v)
          Configuration method
Call this to specify a validator for the filter string.
 

Uses of ISystemValidator in org.eclipse.rse.ui.propertypages
 

Fields in org.eclipse.rse.ui.propertypages declared as ISystemValidator
protected  ISystemValidator SystemKeyValueFieldEditor.defaultValueValidator
           
protected  ISystemValidator SystemFilterStringPropertyPage.filterStringValidator
           
protected  ISystemValidator SystemSubSystemPropertyPageCoreForm.portValidator
           
protected  ISystemValidator SystemSubSystemPropertyPageCoreForm.userIdValidator
           
protected  ISystemValidator SystemKeyValueFieldEditor.valueValidator
           
 

Methods in org.eclipse.rse.ui.propertypages with parameters of type ISystemValidator
 void SystemFilterStringPropertyPage.setFilterStringValidator(ISystemValidator v)
          Configuration method
Call this to specify a validator for the filter string.
 void SystemChangeFilterPropertyPage.setFilterStringValidator(ISystemValidator v)
          Configuration method
Call this to specify a validator for the filter string.
 void SystemComboBoxFieldEditor.setValidator(ISystemValidator validator)
          If this combobox is editable, set the validator to use here per keystroke
 void SystemStringFieldEditor.setValidator(ISystemValidator validator)
          Set the validator to use per keystroke.
 void SystemKeyValueFieldEditor.setValueValidator(ISystemValidator v)
          Call this to specify a validator for the value entry field.
 

Uses of ISystemValidator in org.eclipse.rse.ui.subsystems
 

Methods in org.eclipse.rse.ui.subsystems that return ISystemValidator
 ISystemValidator ISubSystemConfigurationAdapter.getPasswordValidator(ISubSystemConfiguration confi)
          Return the validator for the password which is prompted for at runtime.
 ISystemValidator ISubSystemConfigurationAdapter.getPortValidator(ISubSystemConfiguration confi)
          Return the validator for the port.
 ISystemValidator ISubSystemConfigurationAdapter.getUserIdValidator(ISubSystemConfiguration config)
          Return the validator for the userId.
 

Uses of ISystemValidator in org.eclipse.rse.ui.validators
 

Classes in org.eclipse.rse.ui.validators that implement ISystemValidator
 class ValidatorArchiveName
           
 class ValidatorConnectionName
          This class is used in dialogs that prompt for a connection alias name.
 class ValidatorFileName
          This class is used in dialogs that prompt for a name that eventually needs to become a file on disk.
 class ValidatorFilterName
          This class is used in dialogs that prompt for filter name.
 class ValidatorFilterPoolName
          This class is used in dialogs that prompt for filter name.
 class ValidatorFilterString
          This class is used in dialogs that prompt for filter strings.
 class ValidatorFolderName
          This class is used in dialogs that prompt for a name that eventually needs to become a folder.
 class ValidatorIntegerInput
          For editable numeric properties.
 class ValidatorIntegerRangeInput
          For editable integer numbers that must be within a certain range to be valid
 class ValidatorLocalPath
          This class is used in dialogs that prompt for a local directory path.
 class ValidatorLongInput
          For editable large numeric properties.
 class ValidatorLongRangeInput
          For editable long numbers that must be within a certain range to be valid
 class ValidatorPathName
          This class is used in dialogs that prompt for a name that eventually needs to become a folder path.
 class ValidatorPortInput
          For editable port number properties.
 class ValidatorProfileName
          This class is used in dialogs that prompt for a profile name.
 class ValidatorServerPortInput
           
 class ValidatorSourceType
          This class is used to verify a user-entered source type.
 class ValidatorSpecialChar
          This class is used in dialogs that prompt for string, where the string is not allowed to content special characters, as supplied to this class.
 class ValidatorSystemName
          This class is used in dialogs that prompt for an alias name.
 class ValidatorUniqueString
          This class is used in dialogs that prompt for a string that has to be unique.
 class ValidatorUserId
          This class is used in dialogs that prompt for a userId.
 

Fields in org.eclipse.rse.ui.validators declared as ISystemValidator
protected  ISystemValidator ValidatorUniqueString.syntaxValidator
           
 

Methods in org.eclipse.rse.ui.validators that return ISystemValidator
static ISystemValidator ValidatorFactory.getProfileNameValidator(String profileName)
          Reusable method to return a name validator for renaming a profile.
 

Constructors in org.eclipse.rse.ui.validators with parameters of type ISystemValidator
ValidatorUniqueString(Collection existingList, boolean caseSensitive, ISystemValidator syntaxValidator)
          Constructor accepting a collection and another validator to use for the syntax checking.
ValidatorUniqueString(String[] existingList, boolean caseSensitive, ISystemValidator syntaxValidator)
          Constructor accepting an Array and another validator to use for the syntax checking.
 

Uses of ISystemValidator in org.eclipse.rse.ui.view
 

Methods in org.eclipse.rse.ui.view that return ISystemValidator
 ISystemValidator AbstractSystemViewAdapter.getNameValidator(Object element)
          Return a validator for verifying the new name is correct.
 ISystemValidator ISystemViewElementAdapter.getNameValidator(Object element)
          Return a validator for verifying the new name is correct.
 ISystemValidator SubSystemConfigurationAdapter.getPasswordValidator(ISubSystemConfiguration configuration)
          Return the validator for the password which is prompted for at runtime.
 ISystemValidator SubSystemConfigurationAdapter.getPortValidator(ISubSystemConfiguration configuration)
          Return the validator for the port.
 ISystemValidator SubSystemConfigurationAdapter.getUserIdValidator(ISubSystemConfiguration config)
           
 

Uses of ISystemValidator in org.eclipse.rse.ui.widgets
 

Fields in org.eclipse.rse.ui.widgets declared as ISystemValidator
protected  ISystemValidator SystemPortPrompt.portValidator
           
 

Methods in org.eclipse.rse.ui.widgets with parameters of type ISystemValidator
protected  void SystemPortPrompt.init(Composite composite_prompts, ISystemMessageLine msgLine, boolean wantLabel, boolean isPortEditable, int existingPortValue, ISystemValidator portValidator)
          Initialize vars, create and init prompts
 

Constructors in org.eclipse.rse.ui.widgets with parameters of type ISystemValidator
SystemPortPrompt(Composite parent, int style, ISystemMessageLine msgLine, boolean wantLabel, boolean isPortEditable, int existingPortValue, ISystemValidator portValidator)
          Constructor when you want a new composite to hold the child controls
SystemPortPrompt(Composite composite_prompts, ISystemMessageLine msgLine, boolean wantLabel, boolean isPortEditable, int existingPortValue, ISystemValidator portValidator)
          Constructor when you have an existing composite to hold the child controls
 

Uses of ISystemValidator in org.eclipse.rse.ui.wizards
 

Fields in org.eclipse.rse.ui.wizards declared as ISystemValidator
protected  ISystemValidator SystemNewProfileWizardMainPage.nameValidator
           
 


RSE
Release 3.3

Copyright (c) IBM Corporation and others 2000, 2011. All Rights Reserved.