blob: 8481bdf92d66fb2c73ef88b1a51235d2ebe49bc9 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2008 Tasktop Technologies and others.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Tasktop Technologies - initial API and implementation
*******************************************************************************/
package org.eclipse.dltk.internal.mylyn.search;
import org.eclipse.dltk.core.IField;
import org.eclipse.dltk.core.IModelElement;
import org.eclipse.dltk.internal.mylyn.DLTKStructureBridge;
/**
* @author Mik Kersten
*/
public class DLTKReadAccessProvider extends AbstractJavaRelationProvider {
public static final String ID = ID_GENERIC + ".readaccess"; //$NON-NLS-1$
public static final String NAME = "read by"; //$NON-NLS-1$
public DLTKReadAccessProvider() {
super(DLTKStructureBridge.CONTENT_TYPE, ID);
}
@Override
protected boolean acceptElement(IModelElement javaElement) {
return javaElement instanceof IField;
}
@Override
protected String getSourceId() {
return ID;
}
@Override
public String getName() {
return NAME;
}
}