Initial EGit contribution to eclipse.org
[egit.git] / org.eclipse.egit.ui / src / org / eclipse / egit / ui / internal / components / SelectionChangeListener.java
blobfbb8e50046c4952ba16009dba4216370df2067cb
1 /*******************************************************************************
2 * Copyright (C) 2008, Marek Zawirski <marek.zawirski@gmail.com>
4 * All rights reserved. This program and the accompanying materials
5 * are made available under the terms of the Eclipse Public License v1.0
6 * which accompanies this distribution, and is available at
7 * http://www.eclipse.org/legal/epl-v10.html
8 *******************************************************************************/
9 package org.eclipse.egit.ui.internal.components;
11 /**
12 * General interface for receivers of selection-changed notifications from
13 * various components.
15 public interface SelectionChangeListener {
16 /**
17 * Called when selection in calling component has changed.
19 public void selectionChanged();