| java.lang.Object org.eclipse.ui.internal.ide.AboutInfo
AboutInfo | final public class AboutInfo (Code) | | The information within this object is obtained from the about INI file.
This file resides within an install configurations directory and must be a
standard java property file.
This class is not intended to be instantiated or subclassed by clients.
|
Constructor Summary | |
public | AboutInfo(IProduct product) The information contained in this info will apply to only the argument product. | public | AboutInfo(IBundleGroup bundleGroup) This info object will apply to the argument bundle group. |
AboutInfo | public AboutInfo(IProduct product)(Code) | | The information contained in this info will apply to only the argument product.
|
AboutInfo | public AboutInfo(IBundleGroup bundleGroup)(Code) | | This info object will apply to the argument bundle group.
|
getAboutImage | public ImageDescriptor getAboutImage()(Code) | | Returns the descriptor for an image which can be shown in an "about" dialog
for this product. Products designed to run "headless" typically would not
have such an image.
the descriptor for an about image, or null if none |
getAboutText | public String getAboutText()(Code) | | Returns the text to show in an "about" dialog for this product.
Products designed to run "headless" typically would not have such text.
the about text, or null if none |
getAppName | public String getAppName()(Code) | | Returns the application name or null .
Note this is never shown to the user.
It is used to initialize the SWT Display.
On Motif, for example, this can be used
to set the name used for resource lookup.
the application name, or null See Also: org.eclipse.swt.widgets.Display.setAppName |
getFeatureId | public String getFeatureId()(Code) | | Returns the id for this feature.
the feature id |
getFeatureImage | public ImageDescriptor getFeatureImage()(Code) | | Returns the descriptor for an image which can be shown in an "about features"
dialog. Products designed to run "headless" typically would not have such an image.
the descriptor for a feature image, or null if none |
getFeatureImageCRC | public Long getFeatureImageCRC()(Code) | | Returns the CRC of the feature image as supplied in the properties file.
the CRC of the feature image, or null if none |
getFeatureImageName | public String getFeatureImageName()(Code) | | Returns the simple name of the feature image file.
the simple name of the feature image file,or null if none |
getFeatureLabel | public String getFeatureLabel()(Code) | | Returns a label for the feature plugn, or null .
|
getProductName | public String getProductName()(Code) | | Returns the product name or null .
This is shown in the window title and the About action.
the product name, or null |
getProviderName | public String getProviderName()(Code) | | Returns the provider name or null .
the provider name, or null |
getTipsAndTricksHref | public String getTipsAndTricksHref()(Code) | | Returns a String for the tips and trick href.
the tips and tricks href, or null if none |
getVersionId | public String getVersionId()(Code) | | Returns the feature version id.
the version id of the feature |
getWelcomePageURL | public URL getWelcomePageURL()(Code) | | Returns a URL for the welcome page.
Products designed to run "headless" typically would not have such an page.
the welcome page, or null if none |
getWelcomePerspectiveId | public String getWelcomePerspectiveId()(Code) | | Returns the ID of a perspective in which to show the welcome page.
May be null .
the welcome page perspective id, or null if none |
getWindowImages | public ImageDescriptor[] getWindowImages()(Code) | | Return an array of image descriptors for the window images to use for
this product. The expectations is that the elements will be the same
image rendered at different sizes. Products designed to run "headless"
typically would not have such images.
an array of the image descriptors for the window images, ornull if none since: 3.0 |
readFeatureInfo | public static AboutInfo readFeatureInfo(String featureId, String versionId)(Code) | | Returns the configuration information for the feature with the given id.
Parameters: featureId - the feature id Parameters: versionId - the version id (of the feature) the configuration information for the feature |
|
|