Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 066a2bfbd742fdfe909b115927cda47a0f036912 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
package org.eclipse.ecf.sync;

import org.eclipse.core.runtime.IAdaptable;

/**
 * Model change interface.  This super interface is
 * a 'tag' interface and does not define any methods.
 * See sub-interfaces that extend this interface.
 * 
 */
public interface IModelChange extends IAdaptable {

}

Back to the top