Re: [Module Development] Visual editor for binary file type

2018-01-13 Thread Oliver Rettig
Hi, following https://platform.netbeans.org/tutorials/nbm-filetype.html maybe the missing peace is that you can extend DataObject and you add an object to its lookup which provides support for your specific data. public class ABCDataObject extends MultiDataObject { public ABCObject(File

RE: [Module Development] Visual editor for binary file type

2018-01-13 Thread stephen cumminger
). If you don’t, you would do it right after you open the file. I haven’t done a plugin before, but hope this helps. Regards Steve From: Pete Whelpton [mailto:peedee...@gmail.com] Sent: Saturday, January 13, 2018 9:16 AM To: users@netbeans.apache.org Subject: [Module Development] Visual editor for

[Module Development] Visual editor for binary file type

2018-01-13 Thread Pete Whelpton
Hello - and apologies for what is probably a dumb question. I am trying to create a Netbeans plugin that allows editing of a binary file type (with is basically a two dimensional array) via a Visual Editor containing a JTable. I have a model class that extends AbstractTableModel, and I have follo