blob: b4c327bdf211d6cf762d162a5e580a78b44d02d4 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004 - 2006 University Of British Columbia 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:
* University Of British Columbia - initial API and implementation
*******************************************************************************/
package org.eclipse.mylyn.internal.dltk.search;
import java.util.List;
import org.eclipse.dltk.core.IMethod;
import org.eclipse.dltk.core.IModelElement;
import org.eclipse.mylyn.context.core.IDegreeOfSeparation;
import org.eclipse.mylyn.internal.dltk.DLTKStructureBridge;
public class DLTKReferencesProvider extends AbstractDLTKRelationProvider {
public List getDegreesOfSeparation()
{
return null;
}
public static final String ID = ID_GENERIC + ".references";
public static final String NAME = "referenced by";
public DLTKReferencesProvider() {
super(DLTKStructureBridge.CONTENT_TYPE, ID);
}
protected boolean acceptResultElement(IModelElement element) {
if (element instanceof IMethod) {
IMethod method = (IMethod) element;
if (method.getElementName().startsWith("test")) {
return false; // HACK
} else {
return true;
}
}
return false;
}
protected String getSourceId() {
return ID;
}
public String getName() {
return NAME;
}
}