1 11 package org.eclipse.team.ui.synchronize; 12 13 import org.eclipse.jface.viewers.Viewer; 14 import org.eclipse.ui.PartInitException; 15 16 24 public interface ISynchronizePage { 25 26 34 public void init(ISynchronizePageSite site) throws PartInitException; 35 36 43 public Viewer getViewer(); 44 45 57 public boolean aboutToChangeProperty(ISynchronizePageConfiguration configuration, String key, Object newValue); 58 59 } 60 | Popular Tags |