The Altair Community is migrating to a new platform to provide a better experience for you. In preparation for the migration, the Altair Community is on read-only mode from October 28 - November 6, 2024. Technical support via cases will continue to work as is. For any urgent requests from Students/Faculty members, please submit the form linked here
Answers
public class ExampleSetOperator extends Operator implements ExampleSet {
 ...
}
Doesn't appear to make a lot of sense though.
Best,
51m0n
I'm still not sure what you are trying to achieve. If you want to create an example set editor there is no need to have an operator, because it is interactive, as you say, and not process oriented, right? So the best would probably do to make a view of your own that contains exactly such a component to edit example sets. Extend Dockable and use MainFrame.getDockingDesktop().registerDockable(...); to register your view. Use the RepositoryManager to get at the repositories and load and save data.
Best,
Simon
Best,
Simon