KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > swt > events > ExpandEvent


1 /*******************************************************************************
2  * Copyright (c) 2000, 2006 IBM Corporation and others.
3  * All rights reserved. This program and the accompanying materials
4  * are made available under the terms of the Eclipse Public License v1.0
5  * which accompanies this distribution, and is available at
6  * http://www.eclipse.org/legal/epl-v10.html
7  *
8  * Contributors:
9  * IBM Corporation - initial API and implementation
10  *******************************************************************************/

11 package org.eclipse.swt.events;
12
13
14 import org.eclipse.swt.widgets.*;
15
16 /**
17  * Instances of this class are sent as a result of
18  * <code>ExpandItem</code>s being expanded or collapsed.
19  *
20  * @see ExpandListener
21  *
22  * @since 3.2
23  */

24
25 public class ExpandEvent extends SelectionEvent {
26     
27     static final long serialVersionUID = 3976735856884987356L;
28     
29 /**
30  * Constructs a new instance of this class based on the
31  * information in the given untyped event.
32  *
33  * @param e the untyped event containing the information
34  */

35 public ExpandEvent(Event e) {
36     super(e);
37 }
38
39 }
40
Popular Tags