Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVA

kotlin dependency injection

class Bug {
   lateinit var desc: String;
   lateinit var latestComment: String;
   
    // a setter method so that the Spring container can inject desc and latestComment dependencies
   @Autowired
   fun updateBug(desc: String, latestComment: String) {
       this.desc = desc;
       this.latestComment = latestComment;
   }
}
Source by tedblob.com #
 
PREVIOUS NEXT
Tagged: #kotlin #dependency #injection
ADD COMMENT
Topic
Name
1+3 =