org.eclipse.jface.preference.StringButtonFieldEditor Java Examples

The following examples show how to use org.eclipse.jface.preference.StringButtonFieldEditor. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: PipenvDialog.java    From Pydev with Eclipse Public License 1.0 5 votes vote down vote up
private String check(String title, StringButtonFieldEditor fileFieldEditor) throws ValidationFailedException {
    if (!fileFieldEditor.isValid()) {
        String errorMessage = fileFieldEditor.getErrorMessage();
        if (errorMessage != null && !errorMessage.isEmpty()) {
            final String msg = title + ": " + errorMessage;
            setErrorMessage(msg);
            throw new ValidationFailedException();
        }
    }
    return fileFieldEditor.getStringValue();
}