1 11 package org.eclipse.team.core.diff; 12 13 import org.eclipse.core.runtime.IPath; 14 import org.eclipse.core.runtime.IStatus; 15 16 24 public interface IDiffChangeEvent { 25 26 30 public IDiffTree getTree(); 31 32 36 public IDiff[] getAdditions(); 37 38 42 public IPath[] getRemovals(); 43 44 48 public IDiff[] getChanges(); 49 50 54 public IStatus[] getErrors(); 55 } 56 | Popular Tags |