1 11 package org.eclipse.core.internal.localstore; 12 13 import org.eclipse.core.internal.resources.Resource; 14 import org.eclipse.core.runtime.IProgressMonitor; 15 16 22 public class IsSynchronizedVisitor extends CollectSyncStatusVisitor { 23 static class ResourceChangedException extends RuntimeException { 24 private static final long serialVersionUID = 1L; 25 } 26 27 protected static ResourceChangedException exception = new ResourceChangedException(); 28 29 32 public IsSynchronizedVisitor(IProgressMonitor monitor) { 33 super("", monitor); } 35 36 39 protected void changed(Resource target) { 40 throw exception; 41 } 42 } 43 | Popular Tags |