Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSilenio Quarti2001-09-17 19:27:19 +0000
committerSilenio Quarti2001-09-17 19:27:19 +0000
commit8132bacdb0dc02ac3ba3e52b9a0f19accff61ac7 (patch)
tree57e786b5ce164385359472973d9b38c5edc1cfb7 /bundles
parent5a7cac4a081a994306949adf6ff29842d0deb46c (diff)
downloadeclipse.platform.swt-8132bacdb0dc02ac3ba3e52b9a0f19accff61ac7.tar.gz
eclipse.platform.swt-8132bacdb0dc02ac3ba3e52b9a0f19accff61ac7.tar.xz
eclipse.platform.swt-8132bacdb0dc02ac3ba3e52b9a0f19accff61ac7.zip
*** empty log message ***
Diffstat (limited to 'bundles')
-rwxr-xr-xbundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/FontData.java14
1 files changed, 12 insertions, 2 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/FontData.java b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/FontData.java
index c388614aa5..bbffd73bc5 100755
--- a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/FontData.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/FontData.java
@@ -473,9 +473,19 @@ public void setHeight(int height) {
/**
* Sets the locale of the receiver.
- *
+ * <p>
+ * The locale determines which platform character set this
+ * font is going to use. Widgets and graphics operations that
+ * use this font will convert UNICODE strings to the platform
+ * character set of the specified locale.
+ * </p>
+ * <p>
+ * On platforms which there are multiple character sets for a
+ * given language/country locale, the variant portion of the
+ * locale will determine the character set.
+ * </p>
+ *
* @param locale the Locale of the <code>FontData</code>
- *
*/
public void setLocale(Locale locale) {
this.locale = locale;

Back to the top