blob: 5725ed5c806e175a1d4058cc2888a8a88bfeb1e8 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007 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.core.resources.IResource;
/**
* FileMarkerPropertyTester is a property tester for a marker entry to see if it
* is a marker that has a file behind it.
*
* @since 3.4
*
*/
public class FileMarkerPropertyTester extends PropertyTester {
private static final Object FILE_MARKER = "fileMarker"; //$NON-NLS-1$
/**
* Create a new instance of the receiver.
*/
public FileMarkerPropertyTester() {
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(FILE_MARKER)) {
if (((MarkerEntry) receiver).getMarker().getResource().getType() == IResource.FILE)
return true;
}
return false;
}
}