Created
September 21, 2017 05:45
-
-
Save liviutudor/f5699a97313ff825a96580f68fe9fcd7 to your computer and use it in GitHub Desktop.
Using @DeleGate in groovy, first bean
This file contains 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
import groovy.transform.Sortable | |
import groovy.transform.TupleConstructor | |
@Sortable | |
@TupleConstructor | |
class BeanOne { | |
String firstName | |
String familyName | |
public String getFullName() { | |
"$firstName $familyName" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment