Skip to content

Instantly share code, notes, and snippets.

@ThomasRohde
Created April 9, 2023 05:59
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ThomasRohde/e5fbd2208f6c969eb69f9b5f586743a5 to your computer and use it in GitHub Desktop.
Save ThomasRohde/e5fbd2208f6c969eb69f9b5f586743a5 to your computer and use it in GitHub Desktop.
Helpful little library function to avoid exceptions in your script because there is no current model. #JArchi #Archi
/*
Author: Thomas Klok Rohde
Description: Catch situations where no model is selected, and prompt user to select a model (if more than 1 model is loaded)
History:
April 9, 2023 : Created
*/
window.promptSelection = function (title, choices) {
let ElementListSelectionDialog = Java.extend(Java.type('org.eclipse.ui.dialogs.ElementListSelectionDialog'));
let LabelProvider = Java.type('org.eclipse.jface.viewers.LabelProvider');
let dialog = new ElementListSelectionDialog(shell, new LabelProvider(), {
// Get rid of the pesky help button
createHelpControl: function (parent) {
let help = Java.super(dialog).createHelpControl(parent);
help.setVisible(false);
return help;
}
});
dialog.setElements(choices);
dialog.setTitle(title);
dialog.open();
result = dialog.getFirstResult();
return result ? new String(result) : null;
}
try {
// Do we have a current model? If not, then an exception is thrown!
let name = model.toString();
}
catch (e) {
let models = $.model.getLoadedModels();
if (models.length == 0) {
window.alert("Please load a model!");
exit();
};
if (models.length == 1) {
models[0].setAsCurrent();
}
else {
let selection = window.promptSelection("Choose model", models.map(e => e.name));
if (selection) {
selectedModel = models.find(e => e.name == selection);
selectedModel.setAsCurrent();
}
else {
window.alert("No model selected");
exit();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment