blob: 7459568bae40accc6c9af3ba4576ad1eefba2d40 [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
* https://www.eclipse.org/legal/epl-2.0
*
* SPDX-License-Identifier: EPL-2.0
*
* Tasktop Technologies - initial API and implementation
*******************************************************************************/
package org.eclipse.mylyn.internal.java.ui.search;
import org.eclipse.jdt.core.IField;
import org.eclipse.jdt.core.IJavaElement;
import org.eclipse.mylyn.internal.java.ui.JavaStructureBridge;
/**
* @author Mik Kersten
*/
public class JavaReadAccessProvider extends AbstractJavaRelationProvider {
public static final String ID = ID_GENERIC + ".readaccess"; //$NON-NLS-1$
public static final String NAME = "read by"; //$NON-NLS-1$
public JavaReadAccessProvider() {
super(JavaStructureBridge.CONTENT_TYPE, ID);
}
@Override
protected boolean acceptElement(IJavaElement javaElement) {
return javaElement instanceof IField;
}
@Override
protected String getSourceId() {
return ID;
}
@Override
public String getName() {
return NAME;
}
}