The Win32SystemResourceDecoder Class of the com.ms.awt package is used to utilize Win32 system resource (.res) files.
public class Win32SystemResourceDecoder extends Win32ResourceDecoder { // Constructors public Win32SystemResourceDecoder() throws FileNotFoundException; public Win32SystemResourceDecoder(String filename) throws FileNotFoundException; // Methods public byte[] getBytes(int type, int strId) throws ResourceFormattingException; public byte[] getBytes(int type, String name) throws ResourceFormattingException; public UIDialog getDialog(int dlgId); public UIDialog getDialog(String dlgname); public int getLocale(); public String getString(int strId); public void populateDialog(UIDialog dlg, int dlgId, int language); public void populateDialog(UIDialog dlg, String dlgname, int language); public void setLocale(int locale); }
Win32ResourceDecoder | +--Win32SystemResourceDecoder