Search in sources :

Example 1 with QuotesTableViewer

use of name.abuchen.portfolio.ui.util.QuotesTableViewer in project portfolio by buchen.

the class ReviewImportedQuotesPage method createControl.

@Override
public void createControl(Composite parent) {
    Composite container = new Composite(parent, SWT.NULL);
    setControl(container);
    tableSampleData = new QuotesTableViewer(container);
}
Also used : QuotesTableViewer(name.abuchen.portfolio.ui.util.QuotesTableViewer) Composite(org.eclipse.swt.widgets.Composite)

Example 2 with QuotesTableViewer

use of name.abuchen.portfolio.ui.util.QuotesTableViewer in project portfolio by buchen.

the class HistoricalQuoteProviderPage method createSampleArea.

@Override
protected void createSampleArea(Composite container) {
    Composite composite = new Composite(container, SWT.NONE);
    TableColumnLayout layout = new TableColumnLayout();
    composite.setLayout(layout);
    tableSampleData = new QuotesTableViewer(composite);
}
Also used : QuotesTableViewer(name.abuchen.portfolio.ui.util.QuotesTableViewer) Composite(org.eclipse.swt.widgets.Composite) TableColumnLayout(org.eclipse.jface.layout.TableColumnLayout)

Aggregations

QuotesTableViewer (name.abuchen.portfolio.ui.util.QuotesTableViewer)2 Composite (org.eclipse.swt.widgets.Composite)2 TableColumnLayout (org.eclipse.jface.layout.TableColumnLayout)1