blob: a27296f37d02aa470e8c5e3e056522ea0de5e0ef [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007, 2008 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.ui.internal.views.markers;
import org.eclipse.core.expressions.PropertyTester;
import org.eclipse.ui.ide.IDE;
/**
* QuickFixPropertyTester is the property tester for the quick fix object.
*
* @since 3.4
*
*/
public class QuickFixPropertyTester extends PropertyTester {
private static final String QUICK_FIX = "quickFix"; //$NON-NLS-1$
/**
* Create a new instance of the receiver.
*/
public QuickFixPropertyTester() {
super();
}
/* (non-Javadoc)
* @see org.eclipse.core.expressions.IPropertyTester#test(java.lang.Object, java.lang.String, java.lang.Object[], java.lang.Object)
*/
public boolean test(Object receiver, String property, Object[] args,
Object expectedValue) {
if (property.equals(QUICK_FIX))
return IDE.getMarkerHelpRegistry().hasResolutions(
((MarkerEntry) receiver).getMarker());
return false;
}
}