summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorGrant Gayed <ggayed>2007-03-27 17:24:22 +0000
committerGrant Gayed <ggayed>2007-03-27 17:24:22 +0000
commit9b5aeb18fea98a22efa72cf7075a04353f553774 (patch)
tree844cd2e99ddf3a0a4ed1744a0607c5b2ed8a10b3 /examples
parent6a25fc42ad45038e5678af0a5bbcc5f1b86f5434 (diff)
downloadeclipse.platform.swt-9b5aeb18fea98a22efa72cf7075a04353f553774.tar.gz
eclipse.platform.swt-9b5aeb18fea98a22efa72cf7075a04353f553774.tar.xz
eclipse.platform.swt-9b5aeb18fea98a22efa72cf7075a04353f553774.zip
*** empty log message ***
Diffstat (limited to 'examples')
-rw-r--r--examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet269.java42
1 files changed, 42 insertions, 0 deletions
diff --git a/examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet269.java b/examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet269.java
new file mode 100644
index 0000000000..2da4bd8a15
--- /dev/null
+++ b/examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet269.java
@@ -0,0 +1,42 @@
+/*******************************************************************************
+ * Copyright (c) 2000, 2004 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+package org.eclipse.swt.snippets;
+
+/*
+ * Combo example snippet: set the caret position within a Combo's text
+ *
+ * For a list of all SWT example snippets see
+ * http://www.eclipse.org/swt/snippets/
+ */
+import org.eclipse.swt.*;
+import org.eclipse.swt.widgets.*;
+import org.eclipse.swt.graphics.*;
+import org.eclipse.swt.layout.*;
+
+public class Snippet269 {
+
+public static void main(String[] args) {
+ final Display display = new Display ();
+ Shell shell = new Shell (display);
+ shell.setLayout (new FillLayout ());
+ Combo combo = new Combo (shell, SWT.NONE);
+ combo.add ("item");
+ combo.select (0);
+ shell.pack ();
+ shell.open ();
+ int stringLength = combo.getText ().length ();
+ combo.setSelection (new Point (stringLength, stringLength));
+ while (!shell.isDisposed ()) {
+ if (!display.readAndDispatch ()) display.sleep ();
+ }
+ display.dispose ();
+}
+}