|
||||||||||
| 上一个类 下一个类 | 框架 无框架 | |||||||||
| 摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 | |||||||||
java.lang.Objectjava.util.EventObject
javax.mail.event.MailEvent
javax.mail.event.FolderEvent
public class FolderEvent
This class models Folder existence events. FolderEvents are delivered to FolderListeners registered on the affected Folder as well as the containing Store.
Service providers vary widely in their ability to notify clients of these events. At a minimum, service providers must notify listeners registered on the same Store or Folder object on which the operation occurs. Service providers may also notify listeners when changes are made through operations on other objects in the same virtual machine, or by other clients in the same or other hosts. Such notifications are not required and are typically not supported by mail protocols (including IMAP).
| 字段摘要 | |
|---|---|
static int |
CREATED
The folder was created. |
static int |
DELETED
The folder was deleted. |
protected Folder |
folder
The folder the event occurred on. |
protected Folder |
newFolder
The folder that represents the new name, in case of a RENAMED event. |
static int |
RENAMED
The folder was renamed. |
protected int |
type
The event type. |
| 从类 java.util.EventObject 继承的字段 |
|---|
source |
| 构造方法摘要 | |
|---|---|
FolderEvent(Object source,
Folder oldFolder,
Folder newFolder,
int type)
Constructor. |
|
FolderEvent(Object source,
Folder folder,
int type)
Constructor. |
|
| 方法摘要 | |
|---|---|
void |
dispatch(Object listener)
Invokes the appropriate FolderListener method |
Folder |
getFolder()
Return the affected folder. |
Folder |
getNewFolder()
If this event indicates that a folder is renamed, (i.e, the event type is RENAMED), then this method returns the Folder object representing the new name. |
int |
getType()
Return the type of this event. |
| 从类 java.util.EventObject 继承的方法 |
|---|
getSource, toString |
| 从类 java.lang.Object 继承的方法 |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| 字段详细信息 |
|---|
public static final int CREATED
public static final int DELETED
public static final int RENAMED
protected int type
protected transient Folder folder
protected transient Folder newFolder
| 构造方法详细信息 |
|---|
public FolderEvent(Object source,
Folder folder,
int type)
source - The source of the eventfolder - The affected foldertype - The event type
public FolderEvent(Object source,
Folder oldFolder,
Folder newFolder,
int type)
source - The source of the eventoldFolder - The folder that is renamednewFolder - The folder that represents the new nametype - The event type| 方法详细信息 |
|---|
public int getType()
public Folder getFolder()
getNewFolder()public Folder getNewFolder()
The getFolder() method returns the folder that is renamed.
getFolder()public void dispatch(Object listener)
MailEvent 中的 dispatch
|
||||||||||
| 上一个类 下一个类 | 框架 无框架 | |||||||||
| 摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 | |||||||||