コード例 #1
0
ファイル: Core.java プロジェクト: orbisgis/orbisgis
 /** 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);
 }
コード例 #2
0
ファイル: Core.java プロジェクト: orbisgis/orbisgis
 /** Load the built-ins editors factories */
 private void loadEditorFactories() {
   TableEditorFactory tableEditorFactory = new TableEditorFactory();
   tableEditorFactory.setDataManager(mainContext.getDataManager());
   editors.addEditorFactory(tableEditorFactory);
 }