Package com.ms.ui.resource |
|
 Previous |
 Contents |
 Index |
 Next |
Interface ResourceTypeListener
Methods
public interface ResourceTypeListener {
// Methods
public boolean examineString(int id, String s, int locale);
public boolean examineDialog(int id, byte d[], int locale);
public boolean examineDialog(String id, byte d[], int locale);
public boolean examineMenu(Menu m, int locale);
public boolean examineBinaryData(byte data[], int locale);
public boolean examineImage(byte b[], int imageType, int locale);
}
This interface is used by a class wanting to examine resources in a resource bundle.
public boolean examineBinaryData(byte data[], int locale);
Parameter | Description |
data
| The data to examine.
|
locale
| The locale of the resource.
|
public boolean examineDialog(int id, byte d[], int locale);
Parameter | Description |
d
| The resource identifier of the data.
|
d
| The data to examine.
|
locale
| The locale of the resource.
|
public boolean examineDialog(String id, byte d[], int locale);
Parameter | Description |
id
| The name of the dialog resource.
|
d
| The dialog data.
|
locale
| The locale of the resource.
|
public boolean examineImage(byte b[], int imageType, int locale);
Parameter | Description |
b
| The binary image data.
|
imageType
| The type of the image.
|
locale
| The locale of the resource.
|
public boolean examineMenu(Menu m, int locale);
Parameter | Description |
m
| The menu to examine.
|
locale
| The locale of the resource.
|
public boolean examineString(int id, String s, int locale);
Parameter | Description |
id
| The string identifier.
|
s
| The string name.
|
locale
| The locale of the resource.
|