码迷,mamicode.com
首页 > 其他好文 > 详细

Groovy学习笔记-实现接口

时间:2017-07-27 16:02:23      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:style   多个   handle   usg   roo   接口   com   学习   div   

1.单个委托方法的实现

button.addActionListener(
  { println ‘Implement ActionListener‘ } as ActionListener   
)

2.实现接口中的多个方法:使用映射,以每个方法的名字作为键,以方法对应的代码块作为键值,使用:分割方法名和代码块

handleFocus = [
    focusGained : {msgLabel.setText("Good to see you")},
    focusLost : {msgLabel.setText("Come back soon")}
]

button.addFocusListener(handleFocus as FocusListener)

 

Groovy学习笔记-实现接口

标签:style   多个   handle   usg   roo   接口   com   学习   div   

原文地址:http://www.cnblogs.com/ironcrow/p/7244694.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!