| java.lang.Object org.eclipse.ui.internal.about.AboutData
All known Subclasses: org.eclipse.ui.internal.about.AboutBundleData, org.eclipse.ui.internal.about.AboutBundleGroupData,
AboutData | abstract public class AboutData (Code) | | An abstract parent that describes data that can be displayed in a table in one of
the about dialogs.
since: 3.0 |
getImage | protected static ImageDescriptor getImage(URL url)(Code) | | |
getImage | protected static ImageDescriptor getImage(String value)(Code) | | |
sortById | public static void sortById(boolean reverse, AboutData[] infos)(Code) | | Modify the argument array to be sorted by id. If the reverse
boolean is true, the array is assumed to already be sorted and the
direction of sort (ascending vs. descending) is reversed. Entries
with the same name are sorted by name.
Parameters: reverse - if true then the order of the argument is reversed withoutexamining the value of the fields Parameters: infos - the data to be sorted |
sortByName | public static void sortByName(boolean reverse, AboutData[] infos)(Code) | | Modify the argument array to be sorted by name. If the reverse
boolean is true, the array is assumed to already be sorted and the
direction of sort (ascending vs. descending) is reversed.
Parameters: reverse - if true then the order of the argument is reversed withoutexamining the value of the fields Parameters: infos - the data to be sorted |
sortByProvider | public static void sortByProvider(boolean reverse, AboutData[] infos)(Code) | | Modify the argument array to be sorted by provider. If the reverse
boolean is true, the array is assumed to already be sorted and the
direction of sort (ascending vs. descending) is reversed. Entries
with the same name are sorted by name.
Parameters: reverse - if true then the order of the argument is reversed withoutexamining the value of the fields Parameters: infos - the data to be sorted |
sortByVersion | public static void sortByVersion(boolean reverse, AboutData[] infos)(Code) | | Modify the argument array to be sorted by version. If the reverse
boolean is true, the array is assumed to already be sorted and the
direction of sort (ascending vs. descending) is reversed. Entries
with the same name are sorted by name.
Parameters: reverse - if true then the order of the argument is reversed withoutexamining the value of the fields Parameters: infos - the data to be sorted |
|
|