Uses of Interface
com.atlassian.jira.issue.customfields.option.Option

Packages that use Option
com.atlassian.jira.issue.customfields   
com.atlassian.jira.issue.customfields.impl   
com.atlassian.jira.issue.customfields.manager   
com.atlassian.jira.issue.customfields.option   
com.atlassian.jira.jelly.tag.admin   
com.atlassian.jira.jql.util   
com.atlassian.jira.jql.validator   
com.atlassian.jira.web.action.admin.customfields   
 

Uses of Option in com.atlassian.jira.issue.customfields
 

Methods in com.atlassian.jira.issue.customfields with parameters of type Option
 Set MultipleSettableCustomFieldType.getIssueIdsWithValue(CustomField field, Option option)
          Returns a Set with of Long Objects representing the issue ids that the value has been set for
 void MultipleSettableCustomFieldType.removeValue(CustomField field, Issue issue, Option optionObject)
           
 

Uses of Option in com.atlassian.jira.issue.customfields.impl
 

Methods in com.atlassian.jira.issue.customfields.impl with parameters of type Option
 int CascadingSelectCFType.compareOption(Option option1, Option option2)
           
 Set SelectCFType.getIssueIdsWithValue(CustomField field, Option option)
           
 Set<Long> MultiSelectCFType.getIssueIdsWithValue(CustomField field, Option option)
           
 Set CascadingSelectCFType.getIssueIdsWithValue(CustomField field, Option option)
          Returns a list of Issue Ids matching the "value" note that the value in this instance is the single object
 void SelectCFType.removeValue(CustomField field, Issue issue, Option option)
          This default implementation will remove all values from the custom field for an issue.
 void MultiSelectCFType.removeValue(CustomField field, Issue issue, Option option)
           
 void CascadingSelectCFType.removeValue(CustomField field, Issue issue, Option option)
           
 

Uses of Option in com.atlassian.jira.issue.customfields.manager
 

Methods in com.atlassian.jira.issue.customfields.manager that return Option
 Option OptionsManager.createOption(FieldConfig fieldConfig, Long parentOptionId, Long sequence, String value)
           
 Option DefaultOptionsManager.createOption(FieldConfig fieldConfig, Long parentOptionId, Long sequence, String value)
           
 Option CachedOptionsManager.createOption(FieldConfig fieldConfig, Long parentOptionId, Long sequence, String value)
           
 Option OptionsManager.findByOptionId(Long optionId)
           
 Option DefaultOptionsManager.findByOptionId(Long optionId)
           
 Option CachedOptionsManager.findByOptionId(Long optionId)
           
 

Methods in com.atlassian.jira.issue.customfields.manager that return types with arguments of type Option
 List<Option> OptionsManager.findByOptionValue(String value)
          Finds all options with the given value.
 List<Option> DefaultOptionsManager.findByOptionValue(String value)
           
 List<Option> CachedOptionsManager.findByOptionValue(String value)
           
 List<Option> OptionsManager.findByParentId(Long parentOptionId)
           
 List<Option> DefaultOptionsManager.findByParentId(Long parentOptionId)
           
 List<Option> OptionsManager.getAllOptions()
          Retreives all Option in the system.
 List<Option> DefaultOptionsManager.getAllOptions()
           
 List<Option> CachedOptionsManager.getAllOptions()
           
 

Methods in com.atlassian.jira.issue.customfields.manager with parameters of type Option
 void OptionsManager.deleteOptionAndChildren(Option option)
           
 void DefaultOptionsManager.deleteOptionAndChildren(Option option)
           
 void CachedOptionsManager.deleteOptionAndChildren(Option option)
           
 

Method parameters in com.atlassian.jira.issue.customfields.manager with type arguments of type Option
 void OptionsManager.updateOptions(Collection<Option> options)
          Update a set of options.
 void DefaultOptionsManager.updateOptions(Collection<Option> options)
           
 

Constructor parameters in com.atlassian.jira.issue.customfields.manager with type arguments of type Option
DefaultOptionsManager(OfBizDelegator delegator, CollectionReorderer<Option> reorderer, FieldConfigManager fieldConfigManager)
           
 

Uses of Option in com.atlassian.jira.issue.customfields.option
 

Classes in com.atlassian.jira.issue.customfields.option that implement Option
 class LazyLoadedOption
           
 

Methods in com.atlassian.jira.issue.customfields.option that return Option
 Option Options.addOption(Option parent, String value)
           
 Option OptionsImpl.addOption(Option parent, String value)
           
 Option GenericImmutableOptions.addOption(Option parent, String value)
           
 Option Options.getOptionById(Long optionId)
           
 Option OptionsImpl.getOptionById(Long optionId)
           
 Option GenericImmutableOptions.getOptionById(Long optionId)
           
 Option Options.getOptionForValue(String value, Long parentOptionId)
           
 Option OptionsImpl.getOptionForValue(String value, Long parentOptionId)
           
 Option GenericImmutableOptions.getOptionForValue(String value, Long parentOptionId)
           
 Option Option.getParentOption()
           
 Option LazyLoadedOption.getParentOption()
           
 

Methods in com.atlassian.jira.issue.customfields.option that return types with arguments of type Option
 List<Option> Option.getChildOptions()
           
 List<Option> LazyLoadedOption.getChildOptions()
           
 List<Option> OptionsImpl.getRootOptions()
           
 List<Option> Option.retrieveAllChildren(List<Option> listToAddTo)
           
 List<Option> LazyLoadedOption.retrieveAllChildren(List<Option> listToAddTo)
           
 

Methods in com.atlassian.jira.issue.customfields.option with parameters of type Option
 Option Options.addOption(Option parent, String value)
           
 Option OptionsImpl.addOption(Option parent, String value)
           
 Option GenericImmutableOptions.addOption(Option parent, String value)
           
 int LazyLoadedOption.compareTo(Option o)
           
 void Options.decrementSequence(Option option)
           
 void OptionsImpl.decrementSequence(Option option)
           
 void GenericImmutableOptions.decrementSequence(Option option)
           
 void Options.incrementSequence(Option option)
           
 void OptionsImpl.incrementSequence(Option option)
           
 void GenericImmutableOptions.incrementSequence(Option option)
           
 void Options.moveToLastSequence(Option option)
           
 void OptionsImpl.moveToLastSequence(Option option)
           
 void GenericImmutableOptions.moveToLastSequence(Option option)
           
 void Options.moveToStartSequence(Option option)
           
 void OptionsImpl.moveToStartSequence(Option option)
           
 void GenericImmutableOptions.moveToStartSequence(Option option)
           
 void Options.removeOption(Option option)
           
 void OptionsImpl.removeOption(Option option)
           
 void GenericImmutableOptions.removeOption(Option option)
           
 void Options.sortOptionsByValue(Option parentOption)
           
 void OptionsImpl.sortOptionsByValue(Option parentOption)
           
 void GenericImmutableOptions.sortOptionsByValue(Option parentOption)
           
 

Method parameters in com.atlassian.jira.issue.customfields.option with type arguments of type Option
 List<Option> Option.retrieveAllChildren(List<Option> listToAddTo)
           
 List<Option> LazyLoadedOption.retrieveAllChildren(List<Option> listToAddTo)
           
 

Constructor parameters in com.atlassian.jira.issue.customfields.option with type arguments of type Option
OptionsImpl(List<Option> options, FieldConfig relatedField, CollectionReorderer<Option> reorderer, OptionsManager optionsManager)
           
OptionsImpl(List<Option> options, FieldConfig relatedField, CollectionReorderer<Option> reorderer, OptionsManager optionsManager)
           
 

Uses of Option in com.atlassian.jira.jelly.tag.admin
 

Methods in com.atlassian.jira.jelly.tag.admin that return Option
 Option AddCustomFieldSelectValue.addChildOption(String value)
           
 Option CreateCustomField.addSelectValue(String value)
           
 

Uses of Option in com.atlassian.jira.jql.util
 

Methods in com.atlassian.jira.jql.util that return Option
 Option JqlSelectOptionsUtil.getOptionById(Long optionId)
           
 

Methods in com.atlassian.jira.jql.util that return types with arguments of type Option
 List<Option> JqlSelectOptionsUtil.getOptions(CustomField customField, QueryContext queryContext, QueryLiteral literal, boolean checkOptionIds)
          Returns the options that are represented by the QueryLiteral that are visible in the QueryContext for a particular CustomField.
 List<Option> JqlSelectOptionsUtil.getOptions(CustomField customField, QueryLiteral literal, boolean checkOptionIds)
          Returns all the options possible represented by the QueryLiteral for a particular CustomField.
 List<Option> JqlSelectOptionsUtil.getOptions(CustomField customField, com.atlassian.crowd.embedded.api.User user, QueryLiteral literal, boolean checkOptionIds)
          Returns the options that are represented by the QueryLiteral that are visible to the User on the CustomField.
 List<Option> JqlSelectOptionsUtil.getOptionsForScheme(FieldConfigScheme fieldConfigScheme)
          Retreives all the options for the FieldConfigScheme.
 

Method parameters in com.atlassian.jira.jql.util with type arguments of type Option
 List<QueryLiteral> JqlCascadingSelectLiteralUtil.createQueryLiteralsFromOptions(Operand sourceOperand, Collection<Option> positiveOptions, Collection<Option> negativeOptions)
          Given a list of Options that should be in the result (positive) and a list of Options that shouldn't (negative) creates a list of QueryLiterals that represent the positive and negative options and be used for generating the query.
 List<QueryLiteral> JqlCascadingSelectLiteralUtil.createQueryLiteralsFromOptions(Operand sourceOperand, Collection<Option> positiveOptions, Collection<Option> negativeOptions)
          Given a list of Options that should be in the result (positive) and a list of Options that shouldn't (negative) creates a list of QueryLiterals that represent the positive and negative options and be used for generating the query.
 

Uses of Option in com.atlassian.jira.jql.validator
 

Methods in com.atlassian.jira.jql.validator that return types with arguments of type Option
protected  List<Option> SelectCustomFieldValidator.getOptionsFromLiteral(User searcher, QueryLiteral literal)
           
protected  List<Option> CascadingSelectCustomFieldValidator.getOptionsFromLiteral(User searcher, QueryLiteral literal)
           
 

Uses of Option in com.atlassian.jira.web.action.admin.customfields
 

Methods in com.atlassian.jira.web.action.admin.customfields that return Option
 Option EditCustomFieldOptions.getSelectedOption()
           
 Option EditCustomFieldOptions.getSelectedParentOption()
           
 

Methods in com.atlassian.jira.web.action.admin.customfields with parameters of type Option
 String EditCustomFieldOptions.getDoActionUrl(Option option, String action)
           
 



Copyright © 2002-2011 Atlassian. All Rights Reserved.