use of gov.sandia.n2a.ui.studies.ActivityStudy in project n2a by frothga.
the class N2APlugin method getExtensions.
@Override
public ExtensionPoint[] getExtensions() {
List<ExtensionPoint> result = new ArrayList<ExtensionPoint>();
Collections.addAll(result, Unix.factory(), Windows.factory(), RemoteUnix.factory(), RemoteSlurm.factory());
if (!AppData.properties.getBoolean("headless")) {
Collections.addAll(result, new ExportNative(), gov.sandia.n2a.ui.ref.PanelSearch.exportBibTeX, new ImportNative(), new ImportBibTeX(), new ImportEndNote(), new ImportPubMed(), new ImportRIS(), new ActivityModel(), new ActivityRun(), new ActivityReference(), new ActivityStudy(), new ActivitySettings(), new SettingsAbout(), new SettingsGeneral(), new SettingsHost(), new SettingsLookAndFeel(), new SettingsRepo());
}
return result.toArray(new ExtensionPoint[result.size()]);
}
Aggregations