This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class FormController extends AbstractFormController { | |
| private final Validator validator; | |
| private ValidatedValues<FormModel> v; | |
| public FormController(Validator validator) { | |
| this.validator = validator; | |
| v = ValidatedValues.build(FormModel.class). | |
| withProperty("firstName", () -> getFirstNameTextField().getText(), v -> updateForValidation(getFirstNameTextField(), v)). |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| apply plugin: 'java' | |
| apply plugin: 'jmm' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "name": "My cool API", | |
| "description": "A very cool API", | |
| "licence": "Apache 2.0", | |
| "groupId": "com.cool.api", | |
| "artifactId": "cool-api", | |
| "version": "2.1.9", | |
| "encoding": "UTF-8", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "name": "My cool API", | |
| "description": "A very cool API", | |
| "licence": "Apache 2.0", | |
| "groupId": "com.cool.api", | |
| "artifactId": "cool-api", | |
| "version": "2.1.9", | |
| "encoding": "UTF-8", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "name": "My cool API", | |
| "description": "A very cool API", | |
| "licence": "Apache 2.0", | |
| "groupId": "com.cool.api", | |
| "artifactId": "cool-api", | |
| "version": "2.1.9" | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "groupId": "com.cool.api", | |
| "artifactId": "cool-api" | |
| } |