EventDispatch.java
上传用户:hensond
上传日期:2021-12-27
资源大小:817k
文件大小:1k
源码类别:

软件工程

开发平台:

Java

  1. package com.company.section2;
  2. import java.util.Observable;
  3. import java.util.Observer;
  4. import java.util.Vector;
  5. /**
  6.  * @author cbf4Life cbf4life@126.com
  7.  * I'm glad to share my knowledge with you all.
  8.  */
  9. public class EventDispatch implements Observer{
  10. //单例模式
  11. private final static EventDispatch dispatch = new EventDispatch(); 
  12. //不允许生成新的实例
  13. private EventDispatch(){
  14. }
  15. //获得单例对象
  16. public static EventDispatch getEventDispathc(){
  17. return dispatch;
  18. }
  19. //事件触发
  20. public void update(Observable o, Object arg) {
  21. }
  22. }