blob: bb8dc2d953b5a3879e055b63a211487873d8ccdd [file] [log] [blame]
david_williamscfdb2cd2004-11-11 08:37:49 +00001/*******************************************************************************
amywuecebb042007-04-10 20:07:35 +00002 * Copyright (c) 2001, 2005 IBM Corporation and others.
david_williamscfdb2cd2004-11-11 08:37:49 +00003 * 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
amywuecebb042007-04-10 20:07:35 +00007 *
david_williamscfdb2cd2004-11-11 08:37:49 +00008 * Contributors:
9 * IBM Corporation - initial API and implementation
10 * Jens Lukowski/Innoopract - initial renaming/restructuring
11 *
12 *******************************************************************************/
pavery0f11a862005-03-29 21:14:36 +000013package org.eclipse.wst.sse.ui.internal;
david_williamscfdb2cd2004-11-11 08:37:49 +000014
15
16
17import org.eclipse.jface.viewers.ISelection;
18import org.eclipse.jface.viewers.ISelectionProvider;
19
20/**
21 * This event is used by the SourceEditorTreeViewer to tell the
22 * ViewerSelectionManager that the selection really came from a user click on
23 * the content outliner, instead of being set programatically.
24 */
25public class StructuredTextSelectionChangedEvent extends org.eclipse.jface.viewers.SelectionChangedEvent {
26
david_williams16f26a82004-11-12 07:30:49 +000027 /**
28 * Comment for <code>serialVersionUID</code>
29 */
30 private static final long serialVersionUID = 1L;
31
david_williamscfdb2cd2004-11-11 08:37:49 +000032 public StructuredTextSelectionChangedEvent(ISelectionProvider source, ISelection selection) {
33 super(source, selection);
34 }
35}