Package org.eclipse.ui.intro.config
Class IntroConfigurer
java.lang.Object
org.eclipse.ui.intro.config.IntroConfigurer
Classes that extend this abstract class are used to configure 
CustomizableIntroPart.
 Since it is possible for multiple products to use the same intro configuration, this class allows
 them to customize some aspects of the intro content so that it looks different for different
 products even though they all share the same intro implementation and content.- Since:
- 3.2
- 
Field SummaryFieldsModifier and TypeFieldDescriptionprotected IIntroSitestatic final StringThe identifier of the named group where the configurer can contribute local tool bar actions.
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionfinal voidbind(org.eclipse.ui.internal.intro.impl.model.IntroModelRoot model) Internal method to associate the corresponding intro configuration model.abstract IntroElement[]getGroupChildren(String pageId, String groupId) Returns the children of computed groups.Returns an array of elements that will be used to build launch bar short cut links.getMixinStyle(String pageId, String extensionId) Returns the style value that will be mixed in with the original style of the extension.protected StringgetThemeProperty(String name) Returns the value of the theme property with a given name.abstract StringgetVariable(String variableName) Returns the value of the variable defined by the configurer.voidinit(IIntroSite site, Map<String, String> themeProperties) Provides the opportunity for the configurer to contribute to the action bars and to fetch presentation theme properties.protected booleanisStartPage(String pageId) Return true ifpageIdis the configured start page.abstract StringresolvePath(String extensionId, String path) Resolves an incomplete path in the form "page_id/@" where page_id represents the identifier of the target page.
- 
Field Details- 
TB_ADDITIONSThe identifier of the named group where the configurer can contribute local tool bar actions.- See Also:
 
- 
themeProperties
- 
site
 
- 
- 
Constructor Details- 
IntroConfigurerpublic IntroConfigurer()
 
- 
- 
Method Details- 
initProvides the opportunity for the configurer to contribute to the action bars and to fetch presentation theme properties.- Parameters:
- site- the intro part's site
- themeProperties- properties of the current theme that can be used by the configurer, or- nullif no theme is currently active or the active theme has no properties.
 
- 
bindpublic final void bind(org.eclipse.ui.internal.intro.impl.model.IntroModelRoot model) Internal method to associate the corresponding intro configuration model. May be called independently ofinit(IIntroSite, Map).- Restriction:
 
- 
getThemePropertyReturns the value of the theme property with a given name.- Parameters:
- name- the theme property name
- Returns:
- the value of the property or nullif property is not found, the theme does not have properties or no theme is currently active.
 
- 
getVariableReturns the value of the variable defined by the configurer. This variable can appear in XML content files in attribute names and values of elements. Whenever $variable$ is encountered in the content, it is evaluated using this class by passing 'variable' to this method and substituting the result in the content.- Parameters:
- variableName- the name of the substitution variable
- Returns:
- the value to substitute in place of a variable or nullif the variable cannot be resolved.
 
- 
getGroupChildrenReturns the children of computed groups. Groups marked as computed will be completed at run time when the group is asked to provide children.- Parameters:
- pageId- the identifier of the page in which this group appears
- groupId- the identifier of the group group within the page
- Returns:
- an array of intro elements for this group. Each intro element should contain only legal elements and attributes according to the intro content schema. Returns an empty array for no children.
 
- 
getLaunchBarShortcutsReturns an array of elements that will be used to build launch bar short cut links. Override this method if the intro launch bar has been marked as computed.- Returns:
- an array of elements that will be used to dynamically build shortcut links.
 
- 
resolvePathResolves an incomplete path in the form "page_id/@" where page_id represents the identifier of the target page. The configurator should complete the path according to its internal resolution mechanism. The final path must point at an anchor in the referenced page.- Parameters:
- extensionId- the id specified for the config extension
- path- the incomplete path specified for the config extension
- Returns:
- the complete path that points at the anchor element in the referenced page, or
         nullif the path cannot be resolved or the extension should be hidden.
 
- 
getMixinStyleReturns the style value that will be mixed in with the original style of the extension. Themes can use this feature to render certain extensions differently.- Parameters:
- pageId- the identifier of the target page that this extension is contributed into
- extensionId- the identifier of the extension to provide the mixin style for.
- Returns:
- the style to add to the original extension style or nullif no mixin style is found for this extension.
 
- 
isStartPageReturn true ifpageIdis the configured start page.- Parameters:
- pageId- the page identifier
- Since:
- 3.5
 
 
-