/** Create the GeoCatalog view */ private void makeGeoCatalogPanel() { // The geo-catalog view content is read from the SourceContext geoCatalog = new Catalog(mainContext.getDataManager(), editors); // Catalog extensions geoCatalog.registeTrackers(pluginFramework.getHostBundleContext()); // Add the view as a new Docking Panel dockManager.addDockingPanel(geoCatalog); }
/** Load the built-ins editors factories */ private void loadEditorFactories() { TableEditorFactory tableEditorFactory = new TableEditorFactory(); tableEditorFactory.setDataManager(mainContext.getDataManager()); editors.addEditorFactory(tableEditorFactory); }