/**
* activates the selector popup method
*/
public void popupSelectorModel() {
TextSelector textSelector = TextSelectorManager.getInstance().getTextSelector(textSelectorName);
if (textSelector == null) {
return;
}
if (textSelector.popup()) {
try {
target.setText(textSelector.getText());
} catch (Exception ex) {
//ignore
}
}
}