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);
}
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);
}
Aggregations