Added PHPUnitEditor and corresponding PHPPreferencePage
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / ui / text / java / IReconcilingParticipant.java
1 package net.sourceforge.phpdt.internal.ui.text.java;
2
3 /*
4  * (c) Copyright IBM Corp. 2000, 2001.
5  * All Rights Reserved.
6  */
7
8
9
10 /**
11  * Interface of an object participating in reconciling.
12  */
13 public interface IReconcilingParticipant {
14         
15         /**
16          * Called after reconciling has been finished.
17          */
18         void reconciled();
19 }