Uses of Class
com.atlassian.jira.issue.label.Label

Packages that use Label
com.atlassian.jira.bc.issue.label   
com.atlassian.jira.external.beans   
com.atlassian.jira.issue   
com.atlassian.jira.issue.customfields.impl   
com.atlassian.jira.issue.label   
com.atlassian.jira.issue.search.searchers.transformer   
com.atlassian.jira.jql.resolver   
com.atlassian.jira.mail   
com.atlassian.jira.mock.issue   
com.atlassian.jira.rest.v1.labels   
com.atlassian.jira.rest.v2.issue   
 

Uses of Label in com.atlassian.jira.bc.issue.label
 

Methods in com.atlassian.jira.bc.issue.label that return types with arguments of type Label
 Set<Label> LabelService.LabelsResult.getLabels()
           
 

Constructor parameters in com.atlassian.jira.bc.issue.label with type arguments of type Label
LabelService.LabelsResult(Set<Label> labels, ErrorCollection errorCollection)
           
 

Uses of Label in com.atlassian.jira.external.beans
 

Methods in com.atlassian.jira.external.beans that return types with arguments of type Label
 Set<Label> ExternalIssue.getLabels()
           
 Set<Label> ExternalIssueImpl.getLabels()
           
 

Method parameters in com.atlassian.jira.external.beans with type arguments of type Label
 void ExternalIssue.setLabels(Set<Label> labels)
           
 void ExternalIssueImpl.setLabels(Set<Label> labels)
           
 

Uses of Label in com.atlassian.jira.issue
 

Methods in com.atlassian.jira.issue that return types with arguments of type Label
 Set<Label> IssueImpl.getLabels()
           
 Set<Label> DocumentIssueImpl.getLabels()
           
 Set<Label> Issue.getLabels()
          Returns a set of all the labels for this issue or an empty set if none exist yet.
 

Method parameters in com.atlassian.jira.issue with type arguments of type Label
 void IssueImpl.setLabels(Set<Label> labels)
           
 void MutableIssue.setLabels(Set<Label> labels)
          Set the labels for this issue.
 

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

Methods in com.atlassian.jira.issue.customfields.impl that return Label
 Label LabelsCFType.getSingularObjectFromString(String string)
           
 

Methods in com.atlassian.jira.issue.customfields.impl that return types with arguments of type Label
 Set<Label> LabelsCFType.getDefaultValue(FieldConfig fieldConfig)
           
 Set<Label> LabelsCFType.getValueFromCustomFieldParams(CustomFieldParams customFieldParams)
           
 Set<Label> LabelsCFType.getValueFromIssue(CustomField field, Issue issue)
           
 

Methods in com.atlassian.jira.issue.customfields.impl with parameters of type Label
 String LabelsCFType.getStringFromSingularObject(Label singularObject)
           
 

Method parameters in com.atlassian.jira.issue.customfields.impl with type arguments of type Label
 int LabelsCFType.compare(Set<Label> customFieldObjectValue1, Set<Label> customFieldObjectValue2, FieldConfig fieldConfig)
           
 int LabelsCFType.compare(Set<Label> customFieldObjectValue1, Set<Label> customFieldObjectValue2, FieldConfig fieldConfig)
           
 void LabelsCFType.createValue(CustomField field, Issue issue, Set<Label> value)
           
 String LabelsCFType.getChangelogValue(CustomField field, Set<Label> value)
           
 void LabelsCFType.setDefaultValue(FieldConfig fieldConfig, Set<Label> value)
           
 void LabelsCFType.updateValue(CustomField field, Issue issue, Set<Label> value)
           
 boolean LabelsCFType.valuesEqual(Set<Label> oldLabels, Set<Label> newLabels)
           
 boolean LabelsCFType.valuesEqual(Set<Label> oldLabels, Set<Label> newLabels)
           
 

Uses of Label in com.atlassian.jira.issue.label
 

Methods in com.atlassian.jira.issue.label that return Label
 Label LabelStore.addLabel(Long issueId, Long customFieldId, String label)
          Adds a new label to the issue for the custom field specified.
 Label OfBizLabelStore.addLabel(Long issueId, Long customFieldId, String label)
           
 Label CachingLabelStore.addLabel(Long issueId, Long customFieldId, String label)
           
 Label DefaultLabelManager.addLabel(com.atlassian.crowd.embedded.api.User remoteUser, Long issueId, Long customFieldId, String label, boolean sendNotification)
           
 Label LabelManager.addLabel(com.atlassian.crowd.embedded.api.User remoteUser, Long issueId, Long customFieldId, String label, boolean sendNotification)
          Adds a label to the issue and customFieldId provided.
 Label DefaultLabelManager.addLabel(com.atlassian.crowd.embedded.api.User remoteUser, Long issueId, String label, boolean sendNotification)
           
 Label LabelManager.addLabel(com.atlassian.crowd.embedded.api.User remoteUser, Long issueId, String label, boolean sendNotification)
          Adds a label to the issue provided.
 

Methods in com.atlassian.jira.issue.label that return types with arguments of type Label
static Set<Label> LabelParser.buildFromString(String labelsString)
          Takes a set of labels represented as a string and parses them out.
 Set<Label> DefaultLabelManager.getLabels(Long issueId)
           
 Set<Label> LabelManager.getLabels(Long issueId)
          Returns all the labels for the given issue.
 Set<Label> LabelStore.getLabels(Long issueId, Long customFieldId)
          Returns all the labels for the given issue and custom field.
 Set<Label> OfBizLabelStore.getLabels(Long issueId, Long customFieldId)
           
 Set<Label> DefaultLabelManager.getLabels(Long issueId, Long customFieldId)
           
 Set<Label> CachingLabelStore.getLabels(Long issueId, Long customFieldId)
           
 Set<Label> LabelManager.getLabels(Long issueId, Long customFieldId)
          Returns all the labels for the given issue and custom field.
 Set<Label> LabelStore.setLabels(Long issueId, Long customFieldId, Set<String> labels)
          Sets the labels for a particular issue and field combo to the set specified as a parameter.
 Set<Label> OfBizLabelStore.setLabels(Long issueId, Long customFieldId, Set<String> labels)
           
 Set<Label> CachingLabelStore.setLabels(Long issueId, Long customFieldId, Set<String> labels)
           
 Set<Label> DefaultLabelManager.setLabels(com.atlassian.crowd.embedded.api.User remoteUser, Long issueId, Long customFieldId, Set<String> labels, boolean sendNotification, boolean causesChangeNotification)
           
 Set<Label> LabelManager.setLabels(com.atlassian.crowd.embedded.api.User remoteUser, Long issueId, Long customFieldId, Set<String> labels, boolean sendNotification, boolean causeChangeNotification)
          Sets the labels for a particular issue and field combo to the set specified as a parameter.
 Set<Label> DefaultLabelManager.setLabels(com.atlassian.crowd.embedded.api.User remoteUser, Long issueId, Set<String> labels, boolean sendNotification, boolean causesChangeNotification)
           
 Set<Label> LabelManager.setLabels(com.atlassian.crowd.embedded.api.User remoteUser, Long issueId, Set<String> labels, boolean sendNotification, boolean causeChangeNotification)
          Sets the labels for a particular issue to the set specified as a parameter.
 

Methods in com.atlassian.jira.issue.label with parameters of type Label
 int LabelComparator.compare(Label label1, Label label2)
           
 

Uses of Label in com.atlassian.jira.issue.search.searchers.transformer
 

Constructor parameters in com.atlassian.jira.issue.search.searchers.transformer with type arguments of type Label
LabelsSearchInputTransformer(IndexInfoResolver<Label> indexInfoResolver, JqlOperandResolver operandResolver, FieldFlagOperandRegistry fieldFlagOperandRegistry)
           
 

Uses of Label in com.atlassian.jira.jql.resolver
 

Methods in com.atlassian.jira.jql.resolver with parameters of type Label
 String LabelIndexInfoResolver.getIndexedValue(Label label)
           
 

Uses of Label in com.atlassian.jira.mail
 

Methods in com.atlassian.jira.mail that return types with arguments of type Label
 Set<Label> TemplateIssue.getLabels()
           
 

Uses of Label in com.atlassian.jira.mock.issue
 

Methods in com.atlassian.jira.mock.issue that return types with arguments of type Label
 Set<Label> MockIssue.getLabels()
           
 

Method parameters in com.atlassian.jira.mock.issue with type arguments of type Label
 void MockIssue.setLabels(Set<Label> labels)
           
 

Uses of Label in com.atlassian.jira.rest.v1.labels
 

Methods in com.atlassian.jira.rest.v1.labels with parameters of type Label
 IssueLabelsResource.LabelListStruct IssueLabelsResource.LabelListStruct.addLabel(Label label)
           
 

Uses of Label in com.atlassian.jira.rest.v2.issue
 

Method parameters in com.atlassian.jira.rest.v2.issue with type arguments of type Label
static Collection<String> LabelBean.asStrings(Collection<Label> labels)
           
 



Copyright © 2002-2014 Atlassian. All Rights Reserved.