Uses of Interface
com.atlassian.jira.issue.search.SearchContext

Packages that use SearchContext
com.atlassian.jira.issue   
com.atlassian.jira.issue.customfields.converters   
com.atlassian.jira.issue.customfields.searchers   
com.atlassian.jira.issue.customfields.statistics   
com.atlassian.jira.issue.fields   
com.atlassian.jira.issue.managers   
com.atlassian.jira.issue.search Interfaces and constants related to JIRA's Lucene-based search capabilities. 
com.atlassian.jira.issue.search.managers   
com.atlassian.jira.issue.search.searchers   
com.atlassian.jira.issue.search.searchers.impl   
com.atlassian.jira.issue.transport.impl   
com.atlassian.jira.plugin.customfield   
com.atlassian.jira.web.action.issue   
com.atlassian.jira.web.bean   
 

Uses of SearchContext in com.atlassian.jira.issue
 

Methods in com.atlassian.jira.issue with parameters of type SearchContext
 List CustomFieldManager.getCustomFieldObjects(SearchContext searchContext)
           
 

Uses of SearchContext in com.atlassian.jira.issue.customfields.converters
 

Methods in com.atlassian.jira.issue.customfields.converters that return SearchContext
 SearchContext SelectConverter.getPossibleSearchContextFromValue(Object value, CustomField customField)
           
 

Uses of SearchContext in com.atlassian.jira.issue.customfields.searchers
 

Methods in com.atlassian.jira.issue.customfields.searchers with parameters of type SearchContext
 String VersionSearcher.getEditHtml(SearchContext searchContext, FieldValuesHolder fieldValuesHolder, Map displayParameters, webwork.action.Action action)
           
 void UserPickerSearcher.validateParams(SearchContext searchContext, FieldValuesHolder fieldValuesHolder, I18nHelper i18nHelper, ErrorCollection errors)
           
 void NumberRangeSearcher.validateParams(CustomField customField, SearchContext searchContext, FieldValuesHolder fieldValuesHolder, I18nHelper i18nHelper, ErrorCollection errors)
           
 void MultiSelectSearcher.validateParams(SearchContext searchContext, FieldValuesHolder fieldValuesHolder, I18nHelper i18nHelper, ErrorCollection errors)
           
 void GroupPickerSearcher.validateParams(SearchContext searchContext, FieldValuesHolder fieldValuesHolder, I18nHelper i18nHelper, ErrorCollection errors)
           
protected  Map DateTimeRangeSearcher.getVelocityParams(SearchContext searchContext, FieldLayoutItem fieldLayoutItem, FieldValuesHolder fieldValuesHolder, Map displayParameters, webwork.action.Action action)
           
 boolean DateRangeSearcher.isShown(SearchContext searchContext)
           
 boolean BaseCustomFieldSearcher.isShown(SearchContext searchContext)
           
 void AbstractCustomFieldSearcher.validateParams(SearchContext searchContext, FieldValuesHolder fieldValuesHolder, I18nHelper i18nHelper, ErrorCollection errors)
           
 String AbstractCustomFieldSearcher.getEditHtml(SearchContext searchContext, FieldValuesHolder fieldValuesHolder, Map displayParameters, webwork.action.Action action)
           
 String AbstractCustomFieldSearcher.getViewHtml(SearchContext searchContext, FieldValuesHolder fieldValuesHolder, Map displayParameters, webwork.action.Action action)
           
 void AbstractCustomFieldSearcher.validateParams(CustomField customField, SearchContext searchContext, FieldValuesHolder fieldValuesHolder, I18nHelper i18nHelper, ErrorCollection errors)
           
 

Uses of SearchContext in com.atlassian.jira.issue.customfields.statistics
 

Methods in com.atlassian.jira.issue.customfields.statistics that return SearchContext
protected  SearchContext SelectStatisticsMapper.getSearchContextFromValue(Object value)
           
protected  SearchContext AbstractCustomFieldStatisticsMapper.getSearchContextFromValue(Object value)
           
 

Uses of SearchContext in com.atlassian.jira.issue.fields
 

Methods in com.atlassian.jira.issue.fields with parameters of type SearchContext
 FieldConfig CustomFieldImpl.getReleventConfig(SearchContext searchContext)
           
 boolean CustomFieldImpl.isInScope(User user, SearchContext searchContext)
           
 FieldConfig CustomField.getReleventConfig(SearchContext searchContext)
          The FieldConfig that is relevent to all issue contexts in the search context
 boolean CustomField.isInScope(User user, SearchContext searchContext)
           
 

Uses of SearchContext in com.atlassian.jira.issue.managers
 

Methods in com.atlassian.jira.issue.managers with parameters of type SearchContext
 List DefaultCustomFieldManager.getCustomFieldObjects(SearchContext searchContext)
           
 

Uses of SearchContext in com.atlassian.jira.issue.search
 

Classes in com.atlassian.jira.issue.search that implement SearchContext
 class SearchContextImpl
           
 

Fields in com.atlassian.jira.issue.search declared as SearchContext
static SearchContext SearchContextImpl.GLOBAL_SEARCH_CONTEXT
           
 

Methods in com.atlassian.jira.issue.search that return SearchContext
static SearchContext SearchRequestUtils.getCombinedSearchContext(SearchContext baseSearchContext, SearchContext possibleContext)
          Creates the most specific SearchContext possible from the two parameters.
 SearchContext SearchRequest.getSearchContext()
           
 

Methods in com.atlassian.jira.issue.search with parameters of type SearchContext
static SearchContext SearchRequestUtils.getCombinedSearchContext(SearchContext baseSearchContext, SearchContext possibleContext)
          Creates the most specific SearchContext possible from the two parameters.
 SearchRequest SearchRequestManagerImpl.create(SearchRequest oldSearchRequest, User searchUser, FieldValuesHolder fieldValuesHolder, SearchContext searchContext)
          Takes a user and a FieldValuesHolder of parameters that are used to create a object representation of the search request.
 SearchRequest SearchRequestManager.create(SearchRequest oldSearchRequest, User searchUser, FieldValuesHolder params, SearchContext searchContext)
           
 void SearchRequest.setSearchContext(SearchContext searchContext)
           
 

Constructors in com.atlassian.jira.issue.search with parameters of type SearchContext
SearchContextImpl(SearchContext searchContext)
           
 

Uses of SearchContext in com.atlassian.jira.issue.search.managers
 

Methods in com.atlassian.jira.issue.search.managers with parameters of type SearchContext
 Collection IssueSearcherManager.getSearchers(SearchContext context)
          Get searchers that are applicable for a given context.
 Collection IssueSearcherManager.getSearcherGroups(SearchContext searchContext)
          Get all searcher groups with the IssueSearcher that are applicable for the context.
 Collection DefaultIssueSearcherManager.getSearchers(SearchContext context)
           
 Collection DefaultIssueSearcherManager.getSearcherGroups(SearchContext searchContext)
           
 

Uses of SearchContext in com.atlassian.jira.issue.search.searchers
 

Methods in com.atlassian.jira.issue.search.searchers with parameters of type SearchContext
 boolean SearcherGroup.isShown(SearchContext searchContext)
           
 void IssueSearcher.validateParams(SearchContext searchContext, FieldValuesHolder fieldValuesHolder, I18nHelper i18nHelper, ErrorCollection errors)
          Adds error meessages to the errors object if values in the fieldValuesHolder fails validation.
 boolean IssueSearcher.isShown(SearchContext searchContext)
          Checks if the searcher should be shown in this context
 String IssueSearcher.getEditHtml(SearchContext searchContext, FieldValuesHolder fieldValuesHolder, Map displayParameters, webwork.action.Action action)
           
 String IssueSearcher.getViewHtml(SearchContext searchContext, FieldValuesHolder fieldValuesHolder, Map displayParameters, webwork.action.Action action)
           
 

Uses of SearchContext in com.atlassian.jira.issue.search.searchers.impl
 

Methods in com.atlassian.jira.issue.search.searchers.impl that return SearchContext
static SearchContext SearchContextSearcher.getSearchContext(FieldValuesHolder fieldValuesHolder)
           
 

Methods in com.atlassian.jira.issue.search.searchers.impl with parameters of type SearchContext
 void WorkRatioSearcher.validateParams(SearchContext searchContext, FieldValuesHolder fieldValuesHolder, I18nHelper i18nHelper, ErrorCollection errors)
           
 boolean WorkRatioSearcher.isShown(SearchContext searchContext)
           
 Collection StatusSearcher.getSelectListOptions(SearchContext searchContext)
           
 void SearchContextSearcher.validateParams(SearchContext searchContext, FieldValuesHolder fieldValuesHolder, I18nHelper i18nHelper, ErrorCollection errors)
           
 String SearchContextSearcher.getEditHtml(SearchContext searchContext, FieldValuesHolder fieldValuesHolder, Map displayParameters, webwork.action.Action action)
           
 String SearchContextSearcher.getViewHtml(SearchContext searchContext, FieldValuesHolder fieldValuesHolder, Map displayParameters, webwork.action.Action action)
           
protected  Map ResolutionSearcher.getVelocityParams(SearchContext searchContext, FieldLayoutItem fieldLayoutItem, FieldValuesHolder fieldValuesHolder, Map displayParameters, webwork.action.Action action)
           
 Collection ResolutionSearcher.getSelectListOptions(SearchContext searchContext)
           
 void QuerySearcher.validateParams(SearchContext searchContext, FieldValuesHolder fieldValuesHolder, I18nHelper i18nHelper, ErrorCollection errors)
           
 boolean QuerySearcher.isFieldVisible(String fieldId, FieldValuesHolder fieldValuesHolder, SearchContext searchContext)
           
 Collection PrioritySearcher.getSelectListOptions(SearchContext searchContext)
           
 void GenericProjectConstantsSearcher.validateParams(SearchContext searchContext, FieldValuesHolder fieldValuesHolder, I18nHelper i18nHelper, ErrorCollection errors)
           
 boolean GenericProjectConstantsSearcher.isShown(SearchContext searchContext)
           
 String GenericProjectConstantsSearcher.getEditHtml(SearchContext searchContext, FieldValuesHolder fieldValuesHolder, Map displayParameters, webwork.action.Action action)
           
 String GenericProjectConstantsSearcher.getViewHtml(SearchContext searchContext, FieldValuesHolder fieldValuesHolder, Map displayParameters, webwork.action.Action action)
           
protected abstract  Collection GenericProjectConstantsSearcher.getSelectListOptions(SearchContext searchContext)
           
protected  List GenericProjectConstantsSearcher.getVersionOptions(SearchContext searchContext, boolean unreleasedFirst)
           
 void GenericDateSearcher.validateParams(SearchContext searchContext, FieldValuesHolder fieldValuesHolder, I18nHelper i18nHelper, ErrorCollection errors)
           
protected  Map GenericDateSearcher.getVelocityParams(SearchContext searchContext, FieldLayoutItem fieldLayoutItem, FieldValuesHolder fieldValuesHolder, Map displayParameters, webwork.action.Action action)
           
 String GenericDateSearcher.getEditHtml(SearchContext searchContext, FieldValuesHolder fieldValuesHolder, Map displayParameters, webwork.action.Action action)
           
 String GenericDateSearcher.getViewHtml(SearchContext searchContext, FieldValuesHolder fieldValuesHolder, Map displayParameters, webwork.action.Action action)
           
 void GenericConstantsSearcher.validateParams(SearchContext searchContext, FieldValuesHolder fieldValuesHolder, I18nHelper i18nHelper, ErrorCollection errors)
           
 boolean GenericConstantsSearcher.isShown(SearchContext searchContext)
           
 String GenericConstantsSearcher.getEditHtml(SearchContext searchContext, FieldValuesHolder fieldValuesHolder, Map displayParameters, webwork.action.Action action)
           
 String GenericConstantsSearcher.getViewHtml(SearchContext searchContext, FieldValuesHolder fieldValuesHolder, Map displayParameters, webwork.action.Action action)
           
abstract  Collection GenericConstantsSearcher.getSelectListOptions(SearchContext searchContext)
           
protected  Map FixForVersionsSearcher.getVelocityParams(SearchContext searchContext, FieldLayoutItem fieldLayoutItem, FieldValuesHolder fieldValuesHolder, Map displayParameters, webwork.action.Action action)
           
protected  Collection FixForVersionsSearcher.getSelectListOptions(SearchContext searchContext)
           
 boolean DueDateSearcher.isShown(SearchContext searchContext)
           
protected  Map ComponentsSearcher.getVelocityParams(SearchContext searchContext, FieldLayoutItem fieldLayoutItem, FieldValuesHolder fieldValuesHolder, Map displayParameters, webwork.action.Action action)
           
protected  Collection ComponentsSearcher.getSelectListOptions(SearchContext searchContext)
           
 boolean AssigneeSearcher.isShown(SearchContext searchContext)
           
protected  Map AffectedVersionsSearcher.getVelocityParams(SearchContext searchContext, FieldLayoutItem fieldLayoutItem, FieldValuesHolder fieldValuesHolder, Map displayParameters, webwork.action.Action action)
           
protected  Collection AffectedVersionsSearcher.getSelectListOptions(SearchContext searchContext)
           
 String AbstractUserSearcher.getEditHtml(SearchContext searchContext, FieldValuesHolder fieldValuesHolder, Map displayParameters, webwork.action.Action action)
           
 String AbstractUserSearcher.getViewHtml(SearchContext searchContext, FieldValuesHolder fieldValuesHolder, Map displayParameters, webwork.action.Action action)
           
 void AbstractUserSearcher.validateParams(SearchContext searchContext, FieldValuesHolder fieldValuesHolder, I18nHelper i18nHelper, ErrorCollection errors)
           
 String AbstractIssueSearcher.getEditHtml(SearchContext searchContext, FieldValuesHolder fieldValuesHolder, Map displayParameters, webwork.action.Action action)
           
 String AbstractIssueSearcher.getViewHtml(SearchContext searchContext, FieldValuesHolder fieldValuesHolder, Map displayParameters, webwork.action.Action action)
           
 boolean AbstractIssueSearcher.isShown(SearchContext searchContext)
           
protected  Map AbstractIssueSearcher.getVelocityParams(SearchContext searchContext, FieldLayoutItem fieldLayoutItem, FieldValuesHolder fieldValuesHolder, Map displayParameters, webwork.action.Action action)
           
 

Uses of SearchContext in com.atlassian.jira.issue.transport.impl
 

Methods in com.atlassian.jira.issue.transport.impl that return SearchContext
 SearchContext IssueNavigatorActionParams.getSearchContext()
           
 

Uses of SearchContext in com.atlassian.jira.plugin.customfield
 

Methods in com.atlassian.jira.plugin.customfield with parameters of type SearchContext
 String CustomFieldSearcherModuleDescriptor.getSearchHtml(CustomField customField, CustomFieldSearcher searcher, SearchContext searchContext, FieldLayoutItem fieldLayoutItem, FieldValuesHolder fieldValuesHolder, Map displayParameters, webwork.action.Action action, Map velocityParams)
           
 String CustomFieldSearcherModuleDescriptor.getViewHtml(CustomField customField, CustomFieldSearcher searcher, SearchContext searchContext, FieldLayoutItem fieldLayoutItem, FieldValuesHolder fieldValuesHolder, Map displayParameters, webwork.action.Action action, Map velocityParams)
           
 

Uses of SearchContext in com.atlassian.jira.web.action.issue
 

Methods in com.atlassian.jira.web.action.issue that return SearchContext
protected  SearchContext SearchDescriptionEnabledAction.getSearchContext()
           
 

Uses of SearchContext in com.atlassian.jira.web.bean
 

Methods in com.atlassian.jira.web.bean with parameters of type SearchContext
 boolean FieldVisibilityBean.isFieldHiddenInAllSchemes(String fieldId, SearchContext context, User user)
           
 



Copyright © 2002-2006 Atlassian. All Rights Reserved.