automated build configuration is on its way
[taxeditor.git] / taxeditor-store / src / main / java / eu / etaxonomy / taxeditor / model / IPartChangeListener.java
1 /**
2 *
3 */
4 package eu.etaxonomy.taxeditor.model;
5
6 import org.eclipse.ui.IWorkbenchPartReference;
7
8 /**
9 * <p>IPartChangeListener interface.</p>
10 *
11 * @author n.hoffmann
12 * @version $Id: $
13 */
14 public interface IPartChangeListener {
15
16 /**
17 * <p>partChanged</p>
18 *
19 * @param eventType a {@link java.lang.Integer} object.
20 * @param partRef a {@link org.eclipse.ui.IWorkbenchPartReference} object.
21 */
22 public void partChanged(Integer eventType, IWorkbenchPartReference partRef);
23
24 }