git://git.phpeclipse.com
/
phpeclipse.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
987872521d254ad652cd2ad95b611afcaa5832b5
[phpeclipse.git]
/
net.sourceforge.phpeclipse.ui
/
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
* Interface of an object participating in reconciling.
10
*/
11
public interface IReconcilingParticipant {
12
13
/**
14
* Called after reconciling has been finished.
15
*/
16
void reconciled();
17
}