use of org.eclipse.ui.part.IShowInTargetList in project egit by eclipse.
the class CommitEditor method getShowInTargetIds.
@Override
public String[] getShowInTargetIds() {
IFormPage currentPage = getActivePageInstance();
IShowInTargetList targetList = AdapterUtils.adapt(currentPage, IShowInTargetList.class);
if (targetList != null) {
return targetList.getShowInTargetIds();
}
return null;
}
Aggregations