Changeset 246:fd9c62a2998e for dwt/custom/ExtendedModifyEvent.d
- Timestamp:
- 07/01/08 04:15:59 (6 months ago)
- Files:
-
- dwt/custom/ExtendedModifyEvent.d (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
dwt/custom/ExtendedModifyEvent.d
r212 r246 1 1 /******************************************************************************* 2 * Copyright (c) 2000, 200 4IBM Corporation and others.2 * Copyright (c) 2000, 2008 IBM Corporation and others. 3 3 * All rights reserved. This program and the accompanying materials 4 4 * are made available under the terms of the Eclipse Public License v1.0 … … 19 19 /** 20 20 * This event is sent after a text change occurs. 21 * 22 * @see <a href="http://www.eclipse.org/swt/">Sample code and further information</a> 21 23 */ 22 24 public final class ExtendedModifyEvent : TypedEvent { … … 30 32 static final long serialVersionUID = 3258696507027830832L; 31 33 34 /** 35 * Constructs a new instance of this class based on the 36 * information in the given event. 37 * 38 * @param e the event containing the information 39 */ 32 40 public this(StyledTextEvent e) { 33 41 super(cast(Object)e);
