1 11 package org.eclipse.core.expressions; 12 13 import org.eclipse.core.runtime.CoreException; 14 15 25 public interface IPropertyTester { 26 27 36 public boolean handles(String namespace, String property); 37 38 45 public boolean isInstantiated(); 46 47 54 public boolean isDeclaringPluginActive(); 55 56 64 public IPropertyTester instantiate() throws CoreException; 65 66 81 public boolean test(Object receiver, String property, Object [] args, Object expectedValue); 82 } 83 | Popular Tags |