Eclipse >> SWT >> Get system image
// Get the Display default icons
List<Image> imageList = new ArrayList<Image>();
imageList.
add(Display.getDefault().getSystemImage(SWT.ICON_WARNING));
imageList.
add(Display.getDefault().getSystemImage(SWT.ICON_WORKING));
imageList.
add(Display.getDefault().getSystemImage(SWT.ICON_QUESTION));
imageList
.add(Display.getDefault().getSystemImage(SWT.ICON_INFORMATION));
imageList.
add(Display.getDefault().getSystemImage(SWT.ICON_ERROR));