PackageColumn.java
/*******************************************************************************
* Copyright (c) 2020 Carsten Hammer.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Carsten Hammer - initial API and implementation
*******************************************************************************/
package org.sandbox.jdt.ui.helper.views.colum;
import org.eclipse.jdt.core.IJavaElement;
import org.eclipse.jdt.core.dom.ITypeBinding;
import org.eclipse.jdt.core.dom.IVariableBinding;
import org.eclipse.jface.viewers.TableViewer;
public class PackageColumn extends AbstractColumn {
private static final int bounds= 100;
private static final String title= "Class and Package"; //$NON-NLS-1$
@Override
public void createColumn(TableViewer viewer, int pos) {
// now the class you find the variable
createTableViewerColumn(viewer, title, bounds, pos).setLabelProvider(new AlternatingColumnLabelProvider() {
@Override
public String getText(Object element) {
IVariableBinding p= (IVariableBinding) element;
ITypeBinding declaringClass= p.getDeclaringClass();
if (declaringClass != null) {
return declaringClass.getQualifiedName();
}
IJavaElement javaElement= p.getJavaElement();
if (javaElement != null) {
return javaElement.getElementName();
}
return null;
}
});
}
@Override
protected int compare(IVariableBinding p1, IVariableBinding p2) {
ITypeBinding declaringClass1= p1.getDeclaringClass();
ITypeBinding declaringClass2= p2.getDeclaringClass();
if (declaringClass1 != null && declaringClass2 != null) {
return declaringClass1.getQualifiedName().compareTo(declaringClass2.getQualifiedName());
}
return 0;
}
}