changeset 4:ab8b5765e3d1

fix implements
author Frank Benoit <benoit@tionex.de>
date Wed, 27 Aug 2008 13:51:50 +0200
parents 649b8e223d5a
children 1a8b3cb347e0
files dwt/events/ControlAdapter.d dwt/events/ExpandAdapter.d dwt/events/FocusAdapter.d dwt/events/KeyAdapter.d dwt/events/MenuAdapter.d dwt/events/MouseAdapter.d dwt/events/MouseTrackAdapter.d dwt/events/SelectionAdapter.d dwt/events/ShellAdapter.d dwt/events/TreeAdapter.d dwt/graphics/Device.d dwt/graphics/Image.d dwt/graphics/ImageData.d dwt/graphics/Point.d dwt/graphics/RGB.d dwt/graphics/Rectangle.d dwt/widgets/Control.d dwt/widgets/TypedListener.d
diffstat 18 files changed, 18 insertions(+), 18 deletions(-) [+]
line wrap: on
line diff
--- a/dwt/events/ControlAdapter.d	Wed Aug 27 13:48:25 2008 +0200
+++ b/dwt/events/ControlAdapter.d	Wed Aug 27 13:51:50 2008 +0200
@@ -25,7 +25,7 @@
  * @see ControlListener
  * @see ControlEvent
  */
-public abstract class ControlAdapter implements ControlListener {
+public abstract class ControlAdapter : ControlListener {
 
 /**
  * Sent when the location (x, y) of a control changes relative
--- a/dwt/events/ExpandAdapter.d	Wed Aug 27 13:48:25 2008 +0200
+++ b/dwt/events/ExpandAdapter.d	Wed Aug 27 13:51:50 2008 +0200
@@ -27,7 +27,7 @@
  * 
  * @since 3.2
  */
-public abstract class ExpandAdapter implements ExpandListener {
+public abstract class ExpandAdapter : ExpandListener {
 
 /**
  * Sent when an item is collapsed.
--- a/dwt/events/FocusAdapter.d	Wed Aug 27 13:48:25 2008 +0200
+++ b/dwt/events/FocusAdapter.d	Wed Aug 27 13:51:50 2008 +0200
@@ -25,7 +25,7 @@
  * @see FocusListener
  * @see FocusEvent
  */
-public abstract class FocusAdapter implements FocusListener {
+public abstract class FocusAdapter : FocusListener {
 
 /**
  * Sent when a control gets focus.
--- a/dwt/events/KeyAdapter.d	Wed Aug 27 13:48:25 2008 +0200
+++ b/dwt/events/KeyAdapter.d	Wed Aug 27 13:51:50 2008 +0200
@@ -25,7 +25,7 @@
  * @see KeyListener
  * @see KeyEvent
  */
-public abstract class KeyAdapter implements KeyListener {
+public abstract class KeyAdapter : KeyListener {
 
 /**
  * Sent when a key is pressed on the system keyboard.
--- a/dwt/events/MenuAdapter.d	Wed Aug 27 13:48:25 2008 +0200
+++ b/dwt/events/MenuAdapter.d	Wed Aug 27 13:51:50 2008 +0200
@@ -25,7 +25,7 @@
  * @see MenuListener
  * @see MenuEvent
  */
-public abstract class MenuAdapter implements MenuListener {
+public abstract class MenuAdapter : MenuListener {
 
 /**
  * Sent when a menu is hidden.
--- a/dwt/events/MouseAdapter.d	Wed Aug 27 13:48:25 2008 +0200
+++ b/dwt/events/MouseAdapter.d	Wed Aug 27 13:51:50 2008 +0200
@@ -26,7 +26,7 @@
  * @see MouseListener
  * @see MouseEvent
  */
-public abstract class MouseAdapter implements MouseListener {
+public abstract class MouseAdapter : MouseListener {
 
 /**
  * Sent when a mouse button is pressed twice within the 
--- a/dwt/events/MouseTrackAdapter.d	Wed Aug 27 13:48:25 2008 +0200
+++ b/dwt/events/MouseTrackAdapter.d	Wed Aug 27 13:51:50 2008 +0200
@@ -26,7 +26,7 @@
  * @see MouseTrackListener
  * @see MouseEvent
  */
-public abstract class MouseTrackAdapter implements MouseTrackListener {
+public abstract class MouseTrackAdapter : MouseTrackListener {
 
 /**
  * Sent when the mouse pointer passes into the area of
--- a/dwt/events/SelectionAdapter.d	Wed Aug 27 13:48:25 2008 +0200
+++ b/dwt/events/SelectionAdapter.d	Wed Aug 27 13:51:50 2008 +0200
@@ -25,7 +25,7 @@
  * @see SelectionListener
  * @see SelectionEvent
  */
-public abstract class SelectionAdapter implements SelectionListener {
+public abstract class SelectionAdapter : SelectionListener {
 
 /**
  * Sent when selection occurs in the control.
--- a/dwt/events/ShellAdapter.d	Wed Aug 27 13:48:25 2008 +0200
+++ b/dwt/events/ShellAdapter.d	Wed Aug 27 13:51:50 2008 +0200
@@ -25,7 +25,7 @@
  * @see ShellListener
  * @see ShellEvent
  */
-public abstract class ShellAdapter implements ShellListener {
+public abstract class ShellAdapter : ShellListener {
 
 /**
  * Sent when a shell becomes the active window.
--- a/dwt/events/TreeAdapter.d	Wed Aug 27 13:48:25 2008 +0200
+++ b/dwt/events/TreeAdapter.d	Wed Aug 27 13:51:50 2008 +0200
@@ -25,7 +25,7 @@
  * @see TreeListener
  * @see TreeEvent
  */
-public abstract class TreeAdapter implements TreeListener {
+public abstract class TreeAdapter : TreeListener {
 
 /**
  * Sent when a tree branch is collapsed.
--- a/dwt/graphics/Device.d	Wed Aug 27 13:48:25 2008 +0200
+++ b/dwt/graphics/Device.d	Wed Aug 27 13:51:50 2008 +0200
@@ -33,7 +33,7 @@
  * can have a graphics context (GC) created for them, and they
  * can be drawn on by sending messages to the associated GC.
  */
-public abstract class Device implements Drawable {
+public abstract class Device : Drawable {
     
     /* Debugging */
     public static bool DEBUG;
--- a/dwt/graphics/Image.d	Wed Aug 27 13:48:25 2008 +0200
+++ b/dwt/graphics/Image.d	Wed Aug 27 13:51:50 2008 +0200
@@ -74,7 +74,7 @@
  * @see ImageData
  * @see ImageLoader
  */
-public final class Image : Resource implements Drawable {
+public final class Image : Resource , Drawable {
 
     /**
      * specifies whether the receiver is a bitmap or an icon
--- a/dwt/graphics/ImageData.d	Wed Aug 27 13:48:25 2008 +0200
+++ b/dwt/graphics/ImageData.d	Wed Aug 27 13:51:50 2008 +0200
@@ -35,7 +35,7 @@
  * @see ImageLoader
  */
 
-public final class ImageData implements CloneableCompatibility {
+public final class ImageData : CloneableCompatibility {
     
     /**
      * The width of the image, in pixels.
--- a/dwt/graphics/Point.d	Wed Aug 27 13:48:25 2008 +0200
+++ b/dwt/graphics/Point.d	Wed Aug 27 13:51:50 2008 +0200
@@ -38,7 +38,7 @@
  * @see Rectangle
  */
 
-public final class Point implements SerializableCompatibility {
+public final class Point : SerializableCompatibility {
     
     /**
      * the x coordinate of the point
--- a/dwt/graphics/RGB.d	Wed Aug 27 13:48:25 2008 +0200
+++ b/dwt/graphics/RGB.d	Wed Aug 27 13:51:50 2008 +0200
@@ -38,7 +38,7 @@
  * @see Color
  */
 
-public final class RGB implements SerializableCompatibility {
+public final class RGB : SerializableCompatibility {
     
     /**
      * the red component of the RGB
--- a/dwt/graphics/Rectangle.d	Wed Aug 27 13:48:25 2008 +0200
+++ b/dwt/graphics/Rectangle.d	Wed Aug 27 13:51:50 2008 +0200
@@ -41,7 +41,7 @@
  * @see Point
  */
 
-public final class Rectangle implements SerializableCompatibility {
+public final class Rectangle : SerializableCompatibility {
     
     /**
      * the x coordinate of the rectangle
--- a/dwt/widgets/Control.d	Wed Aug 27 13:48:25 2008 +0200
+++ b/dwt/widgets/Control.d	Wed Aug 27 13:51:50 2008 +0200
@@ -69,7 +69,7 @@
  * within the DWT implementation.
  * </p>
  */
-public abstract class Control : Widget implements Drawable {
+public abstract class Control : Widget , Drawable {
     /**
      * the handle to the OS resource 
      * (Warning: This field is platform dependent)
--- a/dwt/widgets/TypedListener.d	Wed Aug 27 13:48:25 2008 +0200
+++ b/dwt/widgets/TypedListener.d	Wed Aug 27 13:51:50 2008 +0200
@@ -68,7 +68,7 @@
  *
  * @see Listener
  */
-public class TypedListener implements Listener {
+public class TypedListener : Listener {
     
     /**
      * The receiver's event listener