use of io.github.satr.idea.plugin.connector.la.ui.components.RegexFormatter in project intellij-idea-plugin-connector-for-aws-lambda by satr.
the class ConnectorViewFactory method getRegexFormatterFactory.
private JFormattedTextField.AbstractFormatterFactory getRegexFormatterFactory(String pattern) {
RegExFormatter formatter = new RegExFormatter();
formatter.setAllowsInvalid(false);
return new DefaultFormatterFactory(new RegexFormatter(pattern));
}
Aggregations