1 11 package org.eclipse.team.ui.synchronize; 12 13 import org.eclipse.core.resources.IResource; 14 import org.eclipse.jface.util.IPropertyChangeListener; 15 16 25 public interface ISynchronizeScope { 26 27 30 public static final String ROOTS = "prop_roots"; 32 36 public static final String NAME = "prop_name"; 38 43 public String getName(); 44 45 52 public IResource[] getRoots(); 53 54 60 public void addPropertyChangeListener(IPropertyChangeListener listener); 61 62 68 public void removePropertyChangeListener(IPropertyChangeListener listener); 69 70 73 public void dispose(); 74 } 75 | Popular Tags |