blob: deea505575e6674dc6167a7b218ec5fe2020b2bb [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2018 Aston University.
* 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:
* Antonio Garcia-Dominguez - initial API and implementation
******************************************************************************/
package org.eclipse.epsilon.dt.epackageregistryexplorer;
import org.eclipse.epsilon.emc.emf.CachedResourceSet.Cache.CacheItem;
import org.eclipse.jface.dialogs.TitleAreaDialog;
import org.eclipse.jface.viewers.ArrayContentProvider;
import org.eclipse.jface.viewers.LabelProvider;
import org.eclipse.jface.viewers.ListViewer;
import org.eclipse.swt.SWT;
import org.eclipse.swt.layout.GridData;
import org.eclipse.swt.layout.GridLayout;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Control;
import org.eclipse.swt.widgets.Label;
import org.eclipse.swt.widgets.Shell;
public class CacheItemDialog extends TitleAreaDialog {
private static final class StackTraceLabelProvider extends LabelProvider {
@Override
public String getText(Object element) {
StackTraceElement[] stackTrace = (StackTraceElement[]) element;
StringBuilder sb = new StringBuilder();
for (StackTraceElement elem : stackTrace) {
sb.append(elem.toString());
sb.append('\n');
}
return sb.toString();
}
}
private final CacheItem cItem;
public CacheItemDialog(Shell shell, CacheItem cItem) {
super(shell);
this.cItem = cItem;
}
@Override
protected Control createDialogArea(Composite parent) {
final Composite area = (Composite) super.createDialogArea(parent);
final Composite container = new Composite(area, SWT.NONE);
container.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true));
final GridLayout containerLayout = new GridLayout();
container.setLayout(containerLayout);
containerLayout.numColumns = 1;
final Label lblCheckedIn = new Label(container, SWT.NONE);
lblCheckedIn.setText("Checked in from:");
final ListViewer lstCheckedIn = new ListViewer(container);
lstCheckedIn.setContentProvider(new ArrayContentProvider());
lstCheckedIn.setLabelProvider(new StackTraceLabelProvider());
lstCheckedIn.setInput(cItem.getCheckedInFrom().toArray());
final Label lblCheckedOut = new Label(container, SWT.NONE);
lblCheckedOut.setText("Checked out from:");
final ListViewer lstCheckedOut = new ListViewer(container);
lstCheckedOut.setContentProvider(new ArrayContentProvider());
lstCheckedOut.setLabelProvider(new StackTraceLabelProvider());
lstCheckedOut.setInput(cItem.getCheckedOutFrom().toArray());
return area;
}
@Override
public void create() {
super.create();
setTitle("Cache item details");
setMessage("Check where the cache item was acquired and released from");
}
}