use of org.csstudio.opibuilder.visualparts.MultiLineTextCellEditor in project yamcs-studio by yamcs.
the class MultiLineTextPropertyDescriptor method createPropertyEditor.
/**
* {@inheritDoc}
*/
@Override
public CellEditor createPropertyEditor(final Composite parent) {
final String title = NLS.bind("Edit {0}", getDisplayName());
CellEditor editor = new MultiLineTextCellEditor(parent, title);
if (getValidator() != null) {
editor.setValidator(getValidator());
}
return editor;
}
Aggregations