To prevent spam users, you can only post on this forum after registration, which is by invitation. If you want to post on the forum, please send me a mail (h DOT m DOT w DOT verbeek AT tue DOT nl) and I'll send you an invitation in return for an account.

File Chooser inside plugin

Hi, I am new developing a plugin so need some help with using a file chooser inside a plugin, I like the file chooser to remember the last directory used like it happens in the import plugin. Any ideas how to achieve that?

Comments

  • Hi,

    ProM does that by remembering the folder where the last file was imported from. The location of this folder is also stored using the persistent Java preferences. When ProM starts, it reads this again from these Java preferences. See https://svn.win.tue.nl/trac/prom/browser/Packages/ProM-Contexts/Trunk/src/org/processmining/contexts/uitopia/hub/ProMResourceManager.java for the details.

    A question is whether you would like to do this in your plugin. It may be better to create an import plugin for the object you want to import, and to add this object as a parameter to the plugin. You can then import the object into the ProM workspace, and select the object as well when you want to run your plugin.

    Kind regards,
    Eric.

  • Thanks for the info, maybe it's a good idea to make an import plugin (never cross my mind). This files y wan to import are one csv with tabular data and a xes extension there, is any importer for this two type of data?
  • A CSV file importer already exists, this is basically used for importing log files which com e in a CSV file rather than a XES file. Perhaps you could use that importer. every event should then correspond to a row, and every attribute to a column. The first row should contain the attribute names. The only exception are start and complete events, these may be merged into a single row with two timestamps.
Sign In or Register to comment.