1 11 package org.eclipse.core.internal.properties; 12 13 import org.eclipse.core.internal.indexing.IndexCursor; 14 import org.eclipse.core.runtime.CoreException; 15 import org.eclipse.core.runtime.QualifiedName; 16 17 interface IVisitor { 18 33 public boolean requiresValue(ResourceName resourceName, QualifiedName propertyName); 34 35 49 public void visit(ResourceName resourceName, StoredProperty property, IndexCursor cursor) throws CoreException; 50 } 51 | Popular Tags |