|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Uses of CustomField in com.atlassian.jira.issue |
|---|
| Methods in com.atlassian.jira.issue that return CustomField | |
|---|---|
CustomField |
CustomFieldManager.createCustomField(String fieldName,
String description,
CustomFieldType fieldType,
CustomFieldSearcher customFieldSearcher,
List contexts,
List issueTypes)
Creates a custom field with the given name and description of the given CustomFieldType using the given CustomFieldSearcher that is displayed in the given list of contexts available to the given list of issueTypes. |
CustomField |
CustomFieldManager.getCustomFieldInstance(org.ofbiz.core.entity.GenericValue customFieldGv)
Converts a customfield GenericValue to a CustomField instance. |
CustomField |
CustomFieldManager.getCustomFieldObject(Long id)
Get a CustomField by ID. |
CustomField |
CustomFieldManager.getCustomFieldObject(String id)
Get a CustomField by its text key (eg 'customfield_10000'). |
CustomField |
CustomFieldManager.getCustomFieldObjectByName(String customFieldName)
Retrieve the first custom field object with the specified name. |
| Methods in com.atlassian.jira.issue that return types with arguments of type CustomField | |
|---|---|
List<CustomField> |
CustomFieldManager.getCustomFieldObjects()
Returns all custom fields. |
List<CustomField> |
CustomFieldManager.getCustomFieldObjects(org.ofbiz.core.entity.GenericValue issue)
Returns a list of CustomFields that apply to a particular issue. |
List<CustomField> |
CustomFieldManager.getCustomFieldObjects(Issue issue)
Returns a list of CustomFields that apply to a particular issue. |
List<CustomField> |
CustomFieldManager.getCustomFieldObjects(Long projectId,
List<String> issueTypes)
Returns the same as CustomFieldManager.getCustomFieldObjects(Long,String) but allows
to specify a list of issueTypes. |
List<CustomField> |
CustomFieldManager.getCustomFieldObjects(Long projectId,
String issueType)
Gets a list of custom fields for a particular project and issue type. |
List<CustomField> |
CustomFieldManager.getCustomFieldObjects(SearchContext searchContext)
Returns all customfields in a particular SearchContext. |
Collection<CustomField> |
CustomFieldManager.getCustomFieldObjectsByName(String customFieldName)
Retrieve custom field(s) of a certain name. |
List<CustomField> |
CustomFieldManager.getGlobalCustomFieldObjects()
Returns a list of custom fields where the isGlobal()
is true. |
| Methods in com.atlassian.jira.issue with parameters of type CustomField | |
|---|---|
Object |
Issue.getCustomFieldValue(CustomField customField)
|
void |
CustomFieldManager.removeCustomField(CustomField customField)
Removes the customfield supplied including all associations and values. |
void |
MutableIssue.setCustomFieldValue(CustomField customField,
Object value)
Sets a custom field value on this Issue Object, but does not write it to the database. |
| Uses of CustomField in com.atlassian.jira.issue.customfields |
|---|
| Methods in com.atlassian.jira.issue.customfields with parameters of type CustomField | |
|---|---|
void |
CustomFieldType.createValue(CustomField field,
Issue issue,
Object value)
|
String |
CustomFieldType.getChangelogString(CustomField field,
Object value)
Returns a String of representing values to be stored in the change log, an example is the name of a version field that a version id will resolve to within JIRA. |
String |
CustomFieldType.getChangelogValue(CustomField field,
Object value)
Returns a values to be stored in the change log, example is the id of the changed item. |
List<FieldIndexer> |
CustomFieldType.getRelatedIndexers(CustomField customField)
Returns a list of indexers that will be used for the field. |
LuceneFieldSorter |
SortableCustomFieldSearcher.getSorter(CustomField customField)
|
Object |
CustomFieldValueProvider.getStringValue(CustomField customField,
FieldValuesHolder fieldValuesHolder)
Provides a string value representation of the value specified for this searcher. |
Object |
CustomFieldValueProvider.getValue(CustomField customField,
FieldValuesHolder fieldValuesHolder)
Provides an object value representation of the value specified for this searcher. |
Object |
CustomFieldType.getValueFromIssue(CustomField field,
Issue issue)
Retrieves the Object representing the current CustomField value for the given issue. |
Map<String,Object> |
CustomFieldType.getVelocityParameters(Issue issue,
CustomField field,
FieldLayoutItem fieldLayoutItem)
The custom field may wish to pass parameters to the velocity context beyond the getValueFromIssue methods (eg managers). |
Set<Long> |
CustomFieldType.remove(CustomField field)
Performs additional tasks when a CustomField of this type is being removed remove(). |
void |
CustomFieldType.updateValue(CustomField field,
Issue issue,
Object value)
|
| Uses of CustomField in com.atlassian.jira.issue.customfields.converters |
|---|
| Methods in com.atlassian.jira.issue.customfields.converters with parameters of type CustomField | |
|---|---|
SearchContext |
SelectConverter.getPossibleSearchContextFromValue(Object value,
CustomField customField)
|
| Uses of CustomField in com.atlassian.jira.issue.customfields.impl |
|---|
| Methods in com.atlassian.jira.issue.customfields.impl with parameters of type CustomField | |
|---|---|
void |
CalculatedCFType.createValue(CustomField field,
Issue issue,
Object value)
|
void |
AbstractSingleFieldType.createValue(CustomField field,
Issue issue,
Object value)
at this point we know that the value doesn't exist, and that |
String |
AbstractCustomFieldType.getChangelogString(CustomField field,
Object value)
|
String |
CalculatedCFType.getChangelogValue(CustomField field,
Object value)
|
String |
NumberCFType.getChangelogValue(CustomField field,
Object value)
|
String |
AbstractSingleFieldType.getChangelogValue(CustomField field,
Object value)
|
List<FieldIndexer> |
AbstractCustomFieldType.getRelatedIndexers(CustomField customField)
|
Object |
AbstractSingleFieldType.getValueFromIssue(CustomField field,
Issue issue)
|
Map<String,Object> |
NumberCFType.getVelocityParameters(Issue issue,
CustomField field,
FieldLayoutItem fieldLayoutItem)
|
Map<String,Object> |
AbstractCustomFieldType.getVelocityParameters(Issue issue,
CustomField field,
FieldLayoutItem fieldLayoutItem)
|
Set |
CalculatedCFType.remove(CustomField field)
|
Set |
AbstractSingleFieldType.remove(CustomField field)
called when removing a field. |
void |
CalculatedCFType.removeValue(CustomField arg0,
org.ofbiz.core.entity.GenericValue arg1,
Object arg2)
|
void |
CalculatedCFType.updateValue(CustomField field,
Issue issue,
Object value)
|
void |
AbstractSingleFieldType.updateValue(CustomField customField,
Issue issue,
Object value)
the value does exist, and the new value is different than the existing one. |
| Uses of CustomField in com.atlassian.jira.issue.customfields.manager |
|---|
| Methods in com.atlassian.jira.issue.customfields.manager with parameters of type CustomField | |
|---|---|
void |
OptionsManager.removeCustomFieldOptions(CustomField customField)
|
| Uses of CustomField in com.atlassian.jira.issue.customfields.persistence |
|---|
| Methods in com.atlassian.jira.issue.customfields.persistence with parameters of type CustomField | |
|---|---|
void |
CustomFieldValuePersister.createValues(CustomField field,
Long issueId,
PersistenceFieldType persistenceFieldType,
Collection value)
|
void |
CustomFieldValuePersister.createValues(CustomField field,
Long issueId,
PersistenceFieldType persistenceFieldType,
Collection values,
String parentKey)
|
Set<Long> |
CustomFieldValuePersister.getIssueIdsWithValue(CustomField field,
PersistenceFieldType persistenceFieldType,
Object value)
Return a set of issue ids that have a certain value. |
List |
CustomFieldValuePersister.getValues(CustomField field,
Long issueId,
PersistenceFieldType persistenceFieldType)
|
List |
CustomFieldValuePersister.getValues(CustomField field,
Long issueId,
PersistenceFieldType persistenceFieldType,
String parentKey)
|
Set |
CustomFieldValuePersister.removeAllValues(CustomField customField)
Deprecated. Use CustomFieldValuePersister.removeAllValues(String) instead |
Set<Long> |
CustomFieldValuePersister.removeValue(CustomField field,
Long issueId,
PersistenceFieldType persistenceFieldType,
Object value)
Removes a specific custom field value for the given custom field, from a given issue, of a particular type. |
void |
CustomFieldValuePersister.updateValues(CustomField field,
Long issueId,
PersistenceFieldType persistenceFieldType,
Collection values)
|
void |
CustomFieldValuePersister.updateValues(CustomField field,
Long issueId,
PersistenceFieldType persistenceFieldType,
Collection values,
String parentKey)
|
| Uses of CustomField in com.atlassian.jira.issue.customfields.statistics |
|---|
| Methods in com.atlassian.jira.issue.customfields.statistics with parameters of type CustomField | |
|---|---|
StatisticsMapper |
CustomFieldStattable.getStatisticsMapper(CustomField customField)
|
| Uses of CustomField in com.atlassian.jira.issue.customfields.view |
|---|
| Methods in com.atlassian.jira.issue.customfields.view that return CustomField | |
|---|---|
CustomField |
CustomFieldParams.getCustomField()
|
| Methods in com.atlassian.jira.issue.customfields.view with parameters of type CustomField | |
|---|---|
void |
CustomFieldParams.setCustomField(CustomField customField)
|
| Uses of CustomField in com.atlassian.jira.issue.fields |
|---|
| Methods in com.atlassian.jira.issue.fields that return CustomField | |
|---|---|
CustomField |
FieldAccessor.getCustomField(String id)
Get a CustomField by its text key (eg 'customfield_10000'). |
| Methods in com.atlassian.jira.issue.fields that return types with arguments of type CustomField | |
|---|---|
Set<CustomField> |
FieldAccessor.getAvailableCustomFields(com.atlassian.crowd.embedded.api.User remoteUser,
Issue issue)
Retrieves custom fields in scope for the given issue |
| Uses of CustomField in com.atlassian.jira.issue.fields.config |
|---|
| Methods in com.atlassian.jira.issue.fields.config that return CustomField | |
|---|---|
CustomField |
FieldConfig.getCustomField()
Returns the related custom field. |
| Uses of CustomField in com.atlassian.jira.issue.index.indexers.impl |
|---|
| Fields in com.atlassian.jira.issue.index.indexers.impl declared as CustomField | |
|---|---|
protected CustomField |
AbstractCustomFieldIndexer.customField
|
| Constructors in com.atlassian.jira.issue.index.indexers.impl with parameters of type CustomField | |
|---|---|
AbstractCustomFieldIndexer(FieldVisibilityManager fieldVisibilityManager,
CustomField customField)
|
|
| Uses of CustomField in com.atlassian.jira.issue.search |
|---|
| Methods in com.atlassian.jira.issue.search with parameters of type CustomField | |
|---|---|
static ClauseNames |
ClauseNames.forCustomField(CustomField field)
|
| Uses of CustomField in com.atlassian.jira.notification.type |
|---|
| Methods in com.atlassian.jira.notification.type with parameters of type CustomField | |
|---|---|
Object |
UserCFNotificationTypeAware.getValueFromIssue(CustomField customField,
Issue issue)
Retrieves the User or a collection of Users
representing the current CustomField value for the given issue. |
| Uses of CustomField in com.atlassian.jira.plugin.customfield |
|---|
| Methods in com.atlassian.jira.plugin.customfield with parameters of type CustomField | |
|---|---|
abstract String |
CustomFieldTypeModuleDescriptor.getColumnViewHtml(CustomField field,
Object value,
Issue issue,
Map displayParams,
FieldLayoutItem fieldLayoutItem)
|
abstract String |
CustomFieldSearcherModuleDescriptor.getSearchHtml(CustomField customField,
CustomFieldValueProvider provider,
SearchContext searchContext,
FieldValuesHolder fieldValuesHolder,
Map displayParameters,
webwork.action.Action action,
Map velocityParams)
|
abstract String |
CustomFieldSearcherModuleDescriptor.getStatHtml(CustomField field,
Object value,
String urlPrefix)
|
abstract String |
CustomFieldSearcherModuleDescriptor.getViewHtml(CustomField customField,
CustomFieldValueProvider provider,
SearchContext searchContext,
FieldValuesHolder fieldValuesHolder,
Map displayParameters,
webwork.action.Action action,
Map velocityParams)
|
abstract String |
CustomFieldSearcherModuleDescriptor.getViewHtml(CustomField field,
Object value)
|
abstract String |
CustomFieldTypeModuleDescriptor.getViewHtml(CustomField field,
Object value,
Issue issue,
FieldLayoutItem fieldLayoutItem)
|
abstract String |
CustomFieldTypeModuleDescriptor.getViewHtml(CustomField field,
Object value,
Issue issue,
FieldLayoutItem fieldLayoutItem,
Map displayParameters)
|
abstract String |
CustomFieldTypeModuleDescriptor.getViewXML(CustomField field,
Issue issue,
FieldLayoutItem fieldLayoutItem,
boolean raw)
|
| Uses of CustomField in com.atlassian.jira.web.bean |
|---|
| Methods in com.atlassian.jira.web.bean that return CustomField | |
|---|---|
abstract CustomField |
BulkEditBean.getCustomField(String customFieldKey)
|
| Methods in com.atlassian.jira.web.bean with parameters of type CustomField | |
|---|---|
abstract String |
BulkEditBean.getCustomFieldView(CustomField customField)
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||