diff dwt/events/ExpandListener.d @ 34:5123b17c98ef

Ported dwt.events.*, dwt.graphics.GC, Region, dwt.internal.image.*
author Jacob Carlborg <doob@me.com> <jacob.carlborg@gmail.com>
date Sun, 14 Sep 2008 01:45:57 +0200
parents 649b8e223d5a
children d8635bb48c7c
line wrap: on
line diff
--- a/dwt/events/ExpandListener.d	Fri Sep 12 13:53:21 2008 +0200
+++ b/dwt/events/ExpandListener.d	Sun Sep 14 01:45:57 2008 +0200
@@ -7,29 +7,31 @@
  *
  * Contributors:
  *     IBM Corporation - initial API and implementation
+ * Port to the D programming language:
+ *     Frank Benoit <benoit@tionex.de>
  *******************************************************************************/
 module dwt.events.ExpandListener;
 
-import dwt.dwthelper.utils;
 
-import dwt.internal.DWTEventListener;
+public import dwt.internal.DWTEventListener;
+public import dwt.events.ExpandEvent;
 
 /**
  * Classes which implement this interface provide methods
  * that deal with the expanding and collapsing of <code>ExpandItem</code>s.
  *
  * <p>
- * After creating an instance of a class that implements
- * this interface it can be added to a <code>ExpandBar</code> 
+ * After creating an instance of a class that :
+ * this interface it can be added to a <code>ExpandBar</code>
  * control using the <code>addExpandListener</code> method and
- * removed using the <code>removeExpandListener</code> method. 
+ * removed using the <code>removeExpandListener</code> method.
  * When a item of the <code>ExpandBar</code> is expanded or
  * collapsed, the appropriate method will be invoked.
  * </p>
  *
  * @see ExpandAdapter
  * @see ExpandEvent
- * 
+ *
  * @since 3.2
  */
 public interface ExpandListener : DWTEventListener {