Created
March 27, 2021 09:51
-
-
Save mehmetcemyucel/66fcefdfae3e4253575d2a807f688399 to your computer and use it in GitHub Desktop.
spring-native-vanilla-object
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 SimplePojo implements Pojo { | |
public void foo() { | |
// this next method invocation is a direct call on the 'this' reference | |
this.bar(); | |
} | |
public void bar() { | |
// some logic... | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment