Uses of Interface
org.eclipse.cdt.managedbuilder.core.IOptionCategory

Packages that use IOptionCategory
org.eclipse.cdt.managedbuilder.core   
org.eclipse.cdt.managedbuilder.internal.core   
org.eclipse.cdt.managedbuilder.ui.properties   
 

Uses of IOptionCategory in org.eclipse.cdt.managedbuilder.core
 

Methods in org.eclipse.cdt.managedbuilder.core that return IOptionCategory
 IOptionCategory IOption.getCategory()
          Returns the category for this option.
 IOptionCategory[] IOptionCategory.getChildCategories()
          Returns the list of children of this node in the option category tree
 IOptionCategory[] IHoldsOptions.getChildCategories()
          Returns the option category children of this tool.
 IOptionCategory IHoldsOptions.getOptionCategory(java.lang.String id)
          Answers the IOptionCategory that has the unique identifier specified in the argument.
 IOptionCategory IOptionCategory.getOwner()
          Returns the category that owns this category, or null if this is the top category for a tool.
 IOptionCategory ITool.getTopOptionCategory()
          Options are organized into categories for UI purposes.
 

Methods in org.eclipse.cdt.managedbuilder.core with parameters of type IOptionCategory
 void IHoldsOptions.addOptionCategory(IOptionCategory category)
          Adds the IOptionCategory to this Option Holder's list of Option Categories.
 void IOption.setCategory(IOptionCategory category)
          Sets the category for this option.
 

Uses of IOptionCategory in org.eclipse.cdt.managedbuilder.internal.core
 

Classes in org.eclipse.cdt.managedbuilder.internal.core that implement IOptionCategory
 class OptionCategory
           
 class Tool
          Represents a tool that can be invoked during a build.
 

Methods in org.eclipse.cdt.managedbuilder.internal.core that return IOptionCategory
 IOptionCategory OptionReference.getCategory()
           
 IOptionCategory Option.getCategory()
           
 IOptionCategory[] ToolReference.getChildCategories()
           
 IOptionCategory[] OptionCategory.getChildCategories()
           
 IOptionCategory[] HoldsOptions.getChildCategories()
           
 IOptionCategory ToolReference.getOptionCategory(java.lang.String id)
           
 IOptionCategory HoldsOptions.getOptionCategory(java.lang.String id)
           
 IOptionCategory Tool.getOwner()
           
 IOptionCategory OptionCategory.getOwner()
           
 IOptionCategory ToolReference.getTopOptionCategory()
           
 IOptionCategory Tool.getTopOptionCategory()
           
 

Methods in org.eclipse.cdt.managedbuilder.internal.core with parameters of type IOptionCategory
 void HoldsOptions.addChildCategory(IOptionCategory category)
           
 void ToolReference.addOptionCategory(IOptionCategory category)
           
 void HoldsOptions.addOptionCategory(IOptionCategory category)
           
static java.lang.Object OptionCategory.findOptionCategoryByMatchName(java.lang.String matchName, IOptionCategory[] cats)
          Finds an option category from an array of categories by comparing against a match name.
 void OptionReference.setCategory(IOptionCategory category)
           
 void Option.setCategory(IOptionCategory category)
           
 

Constructors in org.eclipse.cdt.managedbuilder.internal.core with parameters of type IOptionCategory
OptionCategory(IOptionCategory owner)
           
 

Uses of IOptionCategory in org.eclipse.cdt.managedbuilder.ui.properties
 

Methods in org.eclipse.cdt.managedbuilder.ui.properties that return IOptionCategory
 IOptionCategory ToolListElement.getOptionCategory()
           
 

Methods in org.eclipse.cdt.managedbuilder.ui.properties with parameters of type IOptionCategory
 void ToolSettingsPrefStore.setSelection(org.eclipse.cdt.core.settings.model.ICResourceDescription rd, ToolListElement element, IOptionCategory category)
           
 

Constructors in org.eclipse.cdt.managedbuilder.ui.properties with parameters of type IOptionCategory
BuildOptionSettingsUI(AbstractCBuildPropertyTab page, IResourceInfo info, IHoldsOptions optionHolder, IOptionCategory _category)
           
ToolListElement(ToolListElement parent, IHoldsOptions optionHolder, IOptionCategory optionCategory)