1 11 package org.eclipse.team.core.mapping; 12 13 import org.eclipse.core.resources.IFile; 14 import org.eclipse.core.resources.IProject; 15 import org.eclipse.core.runtime.CoreException; 16 17 36 public interface IChangeGroupingRequestor { 37 38 46 public void ensureChangesGrouped(IProject project, IFile[] files, String nameHint) throws CoreException; 47 48 57 public boolean isModified(IFile file) throws CoreException; 58 59 } 60 | Popular Tags |