Package org.eclipse.pde.ui.templates
Class ComboChoiceOption
- java.lang.Object
- 
- org.eclipse.pde.ui.templates.TemplateField
- 
- org.eclipse.pde.ui.templates.TemplateOption
- 
- org.eclipse.pde.ui.templates.AbstractChoiceOption
- 
- org.eclipse.pde.ui.templates.ComboChoiceOption
 
 
 
 
- 
 public class ComboChoiceOption extends AbstractChoiceOption Implementation of the AbstractTemplateOption that allows users to choose a value from the fixed set of options using a combo box.- Since:
- 3.2
 
- 
- 
Field Summary- 
Fields inherited from class org.eclipse.pde.ui.templates.AbstractChoiceOptionfChoices
 
- 
 - 
Constructor SummaryConstructors Constructor Description ComboChoiceOption(BaseOptionTemplateSection section, String name, String label, String[][] choices)Constructor for ComboChoiceOption.
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description voidcreateControl(Composite parent, int span)Subclasses must implement this method to create the control of the template field.protected intgetIndexOfChoice(String choice)Get the index (in the collection) of the choiceprotected voidselectOptionChoice(String choice)protected voidsetOptionEnabled(boolean enabled)protected voidsetOptionValue(Object value)- 
Methods inherited from class org.eclipse.pde.ui.templates.AbstractChoiceOptioncreateComposite, fill, getChoice, isBlocked, selectChoice, setEnabled, setValue, setValue
 - 
Methods inherited from class org.eclipse.pde.ui.templates.TemplateOptiongetMessageLabel, getName, getValue, isEmpty, isEnabled, isRequired, setName, setRequired
 - 
Methods inherited from class org.eclipse.pde.ui.templates.TemplateFieldcreateLabel, getLabel, getSection, setLabel
 
- 
 
- 
- 
- 
Constructor Detail- 
ComboChoiceOptionpublic ComboChoiceOption(BaseOptionTemplateSection section, String name, String label, String[][] choices) Constructor for ComboChoiceOption.- Parameters:
- section- the parent section.
- name- the unique name
- label- the presentable label
- choices- the list of choices from which the value can be chosen. Each array entry should be an array of size 2, where position 0 will be interpeted as the choice unique name, and position 1 as the choice presentable label.
 
 
- 
 - 
Method Detail- 
createControlpublic void createControl(Composite parent, int span) Description copied from class:TemplateFieldSubclasses must implement this method to create the control of the template field.- Specified by:
- createControlin class- TemplateField
- Parameters:
- parent- the parent composite the control should be created in
- span- number of columns that the control should span
 
 - 
setOptionValueprotected void setOptionValue(Object value) - Specified by:
- setOptionValuein class- AbstractChoiceOption
 
 - 
setOptionEnabledprotected void setOptionEnabled(boolean enabled) - Specified by:
- setOptionEnabledin class- AbstractChoiceOption
 
 - 
selectOptionChoiceprotected void selectOptionChoice(String choice) - Specified by:
- selectOptionChoicein class- AbstractChoiceOption
 
 - 
getIndexOfChoiceprotected int getIndexOfChoice(String choice) Get the index (in the collection) of the choice- Parameters:
- choice- The key of the item
- Returns:
- The position in the list, or -1 if not found
- Since:
- 3.4
 
 
- 
 
-