diff dwt/graphics/LineAttributes.d @ 10:63c023465156

moved from org.eclipse.swt to dwt
author Frank Benoit <benoit@tionex.de>
date Sat, 05 Jan 2008 17:58:37 +0100
parents ad2b69216039
children 8cec8f536af3
line wrap: on
line diff
--- a/dwt/graphics/LineAttributes.d	Sat Jan 05 17:39:49 2008 +0100
+++ b/dwt/graphics/LineAttributes.d	Sat Jan 05 17:58:37 2008 +0100
@@ -8,9 +8,9 @@
  * Contributors:
  *     IBM Corporation - initial API and implementation
  *******************************************************************************/
-module org.eclipse.swt.graphics.LineAttributes;
+module dwt.graphics.LineAttributes;
 
-import org.eclipse.swt.SWT;
+import dwt.SWT;
 
 /**
  * <code>LineAttributes</code> defines a set of line attributes that
@@ -36,30 +36,30 @@
 	/**
 	 * The line style.
 	 *
-	 * @see org.eclipse.swt.SWT#LINE_CUSTOM
-	 * @see org.eclipse.swt.SWT#LINE_DASH
-	 * @see org.eclipse.swt.SWT#LINE_DASHDOT
-	 * @see org.eclipse.swt.SWT#LINE_DASHDOTDOT
-	 * @see org.eclipse.swt.SWT#LINE_DOT
-	 * @see org.eclipse.swt.SWT#LINE_SOLID
+	 * @see dwt.SWT#LINE_CUSTOM
+	 * @see dwt.SWT#LINE_DASH
+	 * @see dwt.SWT#LINE_DASHDOT
+	 * @see dwt.SWT#LINE_DASHDOTDOT
+	 * @see dwt.SWT#LINE_DOT
+	 * @see dwt.SWT#LINE_SOLID
 	 */
 	public int style;
 
 	/**
 	 * The line cap style.
 	 *
-	 * @see org.eclipse.swt.SWT#CAP_FLAT
-	 * @see org.eclipse.swt.SWT#CAP_ROUND
-	 * @see org.eclipse.swt.SWT#CAP_SQUARE
+	 * @see dwt.SWT#CAP_FLAT
+	 * @see dwt.SWT#CAP_ROUND
+	 * @see dwt.SWT#CAP_SQUARE
 	 */
 	public int cap;
 
 	/**
 	 * The line join style.
 	 *
-	 * @see org.eclipse.swt.SWT#JOIN_BEVEL
-	 * @see org.eclipse.swt.SWT#JOIN_MITER
-	 * @see org.eclipse.swt.SWT#JOIN_ROUND
+	 * @see dwt.SWT#JOIN_BEVEL
+	 * @see dwt.SWT#JOIN_MITER
+	 * @see dwt.SWT#JOIN_ROUND
 	 */
 	public int join;