summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGrant Gayed <ggayed>2005-06-22 16:20:35 +0000
committerGrant Gayed <ggayed>2005-06-22 16:20:35 +0000
commite47431700de1ba0a70cc9c9985ffedfe741a895c (patch)
treec32e9517d3e6081d3cbe020ebe7ca10b5fdd2eea
parent95c8e77e54b831eaa15622ce37b11a4d09ccdd3e (diff)
downloadeclipse.platform.swt-e47431700de1ba0a70cc9c9985ffedfe741a895c.tar.gz
eclipse.platform.swt-e47431700de1ba0a70cc9c9985ffedfe741a895c.tar.xz
eclipse.platform.swt-e47431700de1ba0a70cc9c9985ffedfe741a895c.zip
20448
-rwxr-xr-xbundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Text.java8
1 files changed, 7 insertions, 1 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Text.java b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Text.java
index 2db2a3a684..b7c8d769a5 100755
--- a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Text.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Text.java
@@ -40,7 +40,9 @@ public class Text extends Scrollable {
* The maximum number of characters that can be entered
* into a text widget.
* <p>
- * Note that this value is platform dependent.
+ * Note that this value is platform dependent, based upon
+ * the native widget implementation and (if applicable)
+ * client-server protocol constraints.
* </p>
*/
public static final int LIMIT;
@@ -893,6 +895,8 @@ public String getText (int start, int end) {
* <li>ERROR_WIDGET_DISPOSED - if the receiver has been disposed</li>
* <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li>
* </ul>
+ *
+ * @see Text.LIMIT
*/
public int getTextLimit () {
checkWidget ();
@@ -1610,6 +1614,8 @@ public void setText (String string) {
* <li>ERROR_WIDGET_DISPOSED - if the receiver has been disposed</li>
* <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li>
* </ul>
+ *
+ * @see Text.LIMIT
*/
public void setTextLimit (int limit) {
checkWidget ();