Example use: dragging and dropping a URL into the catalog.
134135136137138139140141
if (url != null) { data = url; } } CatalogImport catalogImport = new CatalogImport(); catalogImport.run(monitor, data); }
38394041424344
CatalogImport catalogImport; @Before public void setUp() throws Exception { catalogImport = new CatalogImport(); }
16171819202122