- 浏览: 847491 次
- 性别:
- 来自: 北京
文章分类
最新评论
-
贝塔ZQ:
读取excel文件,插件pageoffice也可以实现。
POI读写Excel文件(转)- - -
springmvc-freemarker:
java开源项目源码实例下载
java开源项目源代码 -
xuning2516:
第一种方法是个死循环啊。。。
Java NIO 拷贝文件(使用compact) -
u012046856:
...
SessionFactory.getCurrentSession与openSession的区别 -
Season_Wang:
赞一个呀,挺实用的
java swing 中的FileDialog
http://download.java.net/jdk/jdk-api-localizations/jdk-api-zh-cn/publish/1.6.0/html/zh_CN/api/java/awt/AWTEventMulticaster.html
<!---->
|
JavaTM
Platform Standard Ed. 6 |
||||||||
上一个类 下一个类 | 框架 无框架 <script type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../allclasses-noframe.html"><B>所有类</B></A>'); } //--> </script> 所有类 <noscript> <A HREF="../../allclasses-noframe.html"><B>所有类</B></A> </noscript> | ||||||||
摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 |
java.awt
类 AWTEventMulticaster
java.lang.Object java.awt.AWTEventMulticaster
public class AWTEventMulticaster
AWTEventMulticaster
实现对 java.awt.event
包中定义的 AWT 事件的指派,该指派是有效的、线程安全的多路广播事件指派。
以下实例阐释了如何使用此类:
public myComponent extends Component {
ActionListener actionListener = null;
public synchronized void addActionListener(ActionListener l) {
actionListener = AWTEventMulticaster.add(actionListener, l);
}
public synchronized void removeActionListener(ActionListener l) {
actionListener = AWTEventMulticaster.remove(actionListener, l);
}
public void processEvent(AWTEvent e) {
// when event occurs which causes "action" semantic
ActionListener listener = actionListener;
if (listener != null) {
listener.actionPerformed(new ActionEvent());
}
}
}
需要重点注意的是 add
和 remove
方法的第一个参数,它是维护侦听器的字段。此外,必须将 add
和 remove
方法的结果分配给维护侦听器的字段。
AWTEventMulticaster
是作为一对 EventListeners
实现的,它们在构造时被设置。AWTEventMulticaster
是不可变的。add
和 remove
方法不得以任何方式改变 AWTEventMulticaster
。如有必要,可以创建一个新的 AWTEventMulticaster
。以这种方式在指派事件的过程中添加和移除侦听器是安全的。但是,不会向目前正指派的事件通知事件指派操作过程中添加的事件侦听器。
允许所有 add
方法使用 null
参数。如果第一个参数是 null
,则返回第二个参数。如果第一个参数不是 null
,而第二个参数是 null
,则返回第一个参数。如果两个参数都是 non-null
,则使用这两个参数创建一个新的 AWTEventMulticaster
并返回它。
对于使用两个参数的 remove
方法,返回以下内容:
null
,如果第一个参数是null
,或者参数相等(==
)。- 第一个参数,如果第一个参数不是一个
AWTEventMulticaster
实例。 - 在将第二个参数提供给
remove(EventListener)
方法的情况下,对第一个参数调用remove(EventListener)
的结果。
Swing 基于类似的逻辑使用 EventListenerList
。有关细节,请参见 EventListenerList
。
EventListenerList
<!----> <!---->
protected EventListener
|
a
|
protected EventListener
|
b
|
protected
|
AWTEventMulticaster
(EventListener
a,
EventListener
b)
创建一个将侦听器 a 和侦听器 b 链接起来的事件多路广播器实例。 |
void
|
actionPerformed
(ActionEvent
e)
通过在侦听器 a 和侦听器 b 上调用 actionPerformed 方法处理 actionPerformed 事件。 |
|
static ActionListener
|
add
(ActionListener
a,
ActionListener
b)
添加操作侦听器 a 和操作侦听器 b,并返回得到的多路广播侦听器。 |
|
static AdjustmentListener
|
add
(AdjustmentListener
a,
AdjustmentListener
b)
添加调整侦听器 a 和调整侦听器 b,并返回得到的多路广播侦听器。 |
|
static ComponentListener
|
add
(ComponentListener
a,
ComponentListener
b)
添加组件侦听器 a 和组件侦听器 b,并返回得到的多路广播侦听器。 |
|
static ContainerListener
|
add
(ContainerListener
a,
ContainerListener
b)
添加容器侦听器 a 和容器侦听器 b,并返回得到的多路广播侦听器。 |
|
static FocusListener
|
add
(FocusListener
a,
FocusListener
b)
添加焦点侦听器 a 和焦点侦听器 b,并返回得到的多路广播侦听器。 |
|
static HierarchyBoundsListener
|
add
(HierarchyBoundsListener
a,
HierarchyBoundsListener
b)
添加层次结构边界侦听器 a 和层次结构边界侦听器 b,并返回得到的多路广播侦听器。 |
|
static HierarchyListener
|
add
(HierarchyListener
a,
HierarchyListener
b)
添加层次结构侦听器 a 和层次结构侦听器 b,并返回得到的多路广播侦听器。 |
|
static InputMethodListener
|
add
(InputMethodListener
a,
InputMethodListener
b)
添加输入方法侦听器 a 和输入方法侦听器 b,并返回得到的多路广播侦听器。 |
|
static ItemListener
|
add
(ItemListener
a,
ItemListener
b)
添加项侦听器 a 和项侦听器 b,并返回得到的多路广播侦听器。 |
|
static KeyListener
|
add
(KeyListener
a,
KeyListener
b)
添加键侦听器 a 和键侦听器 b,并返回得到的多路广播侦听器。 |
|
static MouseListener
|
add
(MouseListener
a,
MouseListener
b)
添加鼠标侦听器 a 和鼠标侦听器 b,并返回得到的多路广播侦听器。 |
|
static MouseMotionListener
|
add
(MouseMotionListener
a,
MouseMotionListener
b)
添加鼠标移动侦听器 a 和鼠标移动侦听器 b,并返回得到的多路广播侦听器。 |
|
static MouseWheelListener
|
add
(MouseWheelListener
a,
MouseWheelListener
b)
添加鼠标滚轮侦听器 a 和鼠标滚轮侦听器 b,并返回得到的多路广播侦听器。 |
|
static TextListener
|
add
(TextListener
a,
TextListener
b)
|
|
static WindowFocusListener
|
add
(WindowFocusListener
a,
WindowFocusListener
b)
添加窗口焦点侦听器 a 和窗口焦点侦听器 b,并返回得到的多路广播侦听器。 |
|
static WindowListener
|
add
(WindowListener
a,
WindowListener
b)
添加窗口侦听器 a 和窗口侦听器 b,并返回得到的多路广播侦听器。 |
|
static WindowStateListener
|
add
(WindowStateListener
a,
WindowStateListener
b)
添加窗口状态侦听器 a 和窗口状态侦听器 b,并返回得到的多路广播侦听器。 |
|
protected static EventListener
|
addInternal
(EventListener
a,
EventListener
b)
从正添加的侦听器 a 和侦听器 b 中一起返回得到的多路广播侦听器。 |
|
void
|
adjustmentValueChanged
(AdjustmentEvent
e)
通过在侦听器 a 和侦听器 b 上调用 adjustmentValueChanged 方法处理 adjustmentValueChanged 事件。 |
|
void
|
ancestorMoved
(HierarchyEvent
e)
通过在侦听器 a 和侦听器 b 上调用 ancestorMoved 方法处理 ancestorMoved 事件。 |
|
void
|
ancestorResized
(HierarchyEvent
e)
通过在侦听器 a 和侦听器 b 上调用 ancestorResized 方法处理 ancestorResized 事件。 |
|
void
|
caretPositionChanged
(InputMethodEvent
e)
通过在侦听器 a 和侦听器 b 上调用 caretPositionChanged 方法处理 caretPositionChanged 事件。 |
|
void
|
componentAdded
(ContainerEvent
e)
通过在侦听器 a 和侦听器 b 上调用 componentAdded 方法处理 componentAdded 容器事件。 |
|
void
|
componentHidden
(ComponentEvent
e)
通过在侦听器 a 和侦听器 b 上调用 componentHidden 方法处理 componentHidden 事件。 |
|
void
|
componentMoved
(ComponentEvent
e)
通过在侦听器 a 和侦听器 b 上调用 componentMoved 方法处理 componentMoved 事件。 |
|
void
|
componentRemoved
(ContainerEvent
e)
通过在侦听器 a 和侦听器 b 上调用 componentRemoved 方法处理 componentRemoved 容器事件。 |
|
void
|
componentResized
(ComponentEvent
e)
通过在侦听器 a 和侦听器 b 上调用 componentResized 方法处理 componentResized 事件。 |
|
void
|
componentShown
(ComponentEvent
e)
通过在侦听器 a 和侦听器 b 上调用 componentShown 方法处理 componentShown 事件。 |
|
void
|
focusGained
(FocusEvent
e)
通过在侦听器 a 和侦听器 b 上调用 focusGained 方法处理 focusGained 事件。 |
|
void
|
focusLost
(FocusEvent
e)
通过在侦听器 a 和侦听器 b 上调用 focusLost 方法处理 focusLost 事件。 |
|
static
|
getListeners
(EventListener
l,
Class
<T> listenerType)
返回通过指定的 java.util.EventListener
链接为 Foo
Listener
的所有对象的数组。 |
|
void
|
hierarchyChanged
(HierarchyEvent
e)
通过在侦听器 a 和侦听器 b 上调用 hierarchyChanged 方法处理 hierarchyChanged 事件。 |
|
void
|
inputMethodTextChanged
(InputMethodEvent
e)
通过在侦听器 a 和侦听器 b 上调用 inputMethodTextChanged 方法处理 inputMethodTextChanged 事件。 |
|
void
|
itemStateChanged
(ItemEvent
e)
通过在侦听器 a 和侦听器 b 上调用 itemStateChanged 方法处理 itemStateChanged 事件。 |
|
void
|
keyPressed
(KeyEvent
e)
通过在侦听器 a 和侦听器 b 上调用 keyPressed 方法处理 keyPressed 事件。 |
|
void
|
keyReleased
(KeyEvent
e)
通过在侦听器 a 和侦听器 b 上调用 keyReleased 方法处理 keyReleased 事件。 |
|
void
|
keyTyped
(KeyEvent
e)
通过在侦听器 a 和侦听器 b 上调用 keyTyped 方法处理 keyTyped 事件。 |
|
void
|
mouseClicked
(MouseEvent
e)
通过在侦听器 a 和侦听器 b 上调用 mouseClicked 方法处理 mouseClicked 事件。 |
|
void
|
mouseDragged
(MouseEvent
e)
通过在侦听器 a 和侦听器 b 上调用 mouseDragged 方法处理 mouseDragged 事件。 |
|
void
|
mouseEntered
(MouseEvent
e)
通过在侦听器 a 和侦听器 b 上调用 mouseEntered 方法处理 mouseEntered 事件。 |
|
void
|
mouseExited
(MouseEvent
e)
通过在侦听器 a 和侦听器 b 上调用 mouseExited 方法处理 mouseExited 事件。 |
|
void
|
mouseMoved
( |
发表评论
-
web开发的一些问题(java方向)
2008-09-08 19:42 14331.分页的解决方案,通用性,分页时参数丢失问题,如何解决? 2 ... -
java开源项目源代码
2008-08-14 23:02 20920java开源项目 源代码 http://www.codase. ... -
对象的序列化 Externalizable Serializable
2008-08-10 21:51 3156对象的序列化是非常有趣的,因为利用它可以实现“有限持久化”。请 ... -
thinking in java notes
2008-08-10 20:33 1413public class IOStreamDemo { / ... -
thinking in java notes
2008-08-09 14:42 1123覆盖一个方法时,只能产生已在方法的基础类版本中定义的异常,或者 ... -
Java优化编程(第二版)
2008-08-03 22:25 2461Java优化编程(第二版) ... -
2.2 JVM中对象的生命周期
2008-08-03 22:22 12742.2 JVM中对象的生命周期 在JVM运行空间中,对象的整 ... -
自我参考:Java学习的30个目标
2008-08-03 21:47 1239自我参考:Java学习的30个目标时间:2007-02-10 ... -
解析Java类和对象的初始化过程
2008-08-03 21:46 1209解析Java类和对象的初始化过程本篇教程来源于 完全教程网 原 ... -
Thinking in java notes
2008-08-01 16:02 1350switch 接受char,enum,byte,int cha ... -
Thinking in java notes
2008-07-22 15:14 1187============chapter 1 Basic=== ... -
JavaBeans教程
2008-07-18 10:14 1165JavaBeans教程 作者:Unkown ... -
Developing Java Beans
2008-07-15 17:54 1089Chapter1 Java Bean architect ... -
Java Enumeration (枚举类型) (2) -- switch语句语法有一点点特别
2008-07-15 11:20 2501http://www.blogjava.net/JafeLee ...
相关推荐
a - Variable in class java.awt.AWTEventMulticaster A variable in the event chain (listener-a) A - Static variable in class java.awt.PageAttributes.MediaType The MediaType instance for Engineering A, 8...
`AWTEventMulticaster`类用于高效地管理多个监听器,当事件发生时,它会调用所有已注册的监听器的相应方法。 总结来说,观察者模式是一种强大的设计模式,它使得对象间的耦合变得松散,同时也使得系统能够灵活地...
例如,`java.awt.AWTEventMulticaster`实现了适配器模式。 9. **桥接模式(Bridge)**:将抽象部分与它的实现部分分离,使它们都可以独立地变化。例如,Java中的`java.awt.Color`和`java.awt.ColorModel`。 10. **...
api接口 a - Variable in class java.awt.AWTEventMulticaster