com.atlassian.jira.issue.customfields.view
Interface CustomFieldEditHelper

All Known Implementing Classes:
AbstractCustomFieldEditHelper

public interface CustomFieldEditHelper

Implementations of this class are passed to the 'edit' templates for custom fields. This allows custom field templates to be ignorant of where they pull their values from.


Method Summary
 CustomField getCustomField()
           
 java.lang.String getCustomFieldValue()
          A convenience method that just returns the value of getCustomFieldValues(String) with a null key
 java.util.Collection getCustomFieldValues(java.lang.String key)
           
 java.lang.String getDescription()
           
 java.lang.String getId()
           
 java.lang.String getName()
           
 java.util.Collection getOptions()
          A convenience method that just returns the value of getOptions(String) with a null key
 java.util.Collection getOptions(java.lang.String key)
           
 ProjectIssueType getProjectIssueType()
           
 boolean isRequired()
           
 

Method Detail

getCustomField

CustomField getCustomField()

getId

java.lang.String getId()

getName

java.lang.String getName()

getDescription

java.lang.String getDescription()

isRequired

boolean isRequired()

getOptions

java.util.Collection getOptions(java.lang.String key)

getCustomFieldValues

java.util.Collection getCustomFieldValues(java.lang.String key)

getCustomFieldValue

java.lang.String getCustomFieldValue()
A convenience method that just returns the value of getCustomFieldValues(String) with a null key

Returns:

getOptions

java.util.Collection getOptions()
A convenience method that just returns the value of getOptions(String) with a null key

Returns:

getProjectIssueType

ProjectIssueType getProjectIssueType()


Copyright © 2002-2006 Atlassian. All Rights Reserved.