Package com.ms.ui.resource Previous
Previous
Contents
Contents
Index
Index
Next
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.


Methods


examineBinaryData

public boolean examineBinaryData(byte data[], int locale);

ParameterDescription
data The data to examine.
locale The locale of the resource.


examineDialog

public boolean examineDialog(int id, byte d[], int locale);

ParameterDescription
d The resource identifier of the data.
d The data to examine.
locale The locale of the resource.


examineDialog

public boolean examineDialog(String id, byte d[], int locale);

ParameterDescription
id The name of the dialog resource.
d The dialog data.
locale The locale of the resource.


examineImage

public boolean examineImage(byte b[], int imageType, int locale);

ParameterDescription
b The binary image data.
imageType The type of the image.
locale The locale of the resource.


examineMenu

public boolean examineMenu(Menu m, int locale);

ParameterDescription
m The menu to examine.
locale The locale of the resource.


examineString

public boolean examineString(int id, String s, int locale);

ParameterDescription
id The string identifier.
s The string name.
locale The locale of the resource.



Top© 1997 Microsoft Corporation. All rights reserved. Legal Notices.