/**
* Adds the specified container listener to this object's list of
* container listeners.
*
* @param listener The listener to add.
*/
public synchronized void addContainerListener(ContainerListener listener)
{
if (listener != null)
{
containerListener = AWTEventMulticaster.add(containerListener,
listener);
newEventsOnly = true;
}
}
Container.java 文件源码
java
阅读 20
收藏 0
点赞 0
评论 0
项目:JamVM-PH
作者:
评论列表
文章目录