KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > columba > mail > filter > plugins > CopyMessageAction


1 //The contents of this file are subject to the Mozilla Public License Version 1.1
2
//(the "License"); you may not use this file except in compliance with the
3
//License. You may obtain a copy of the License at http://www.mozilla.org/MPL/
4
//
5
//Software distributed under the License is distributed on an "AS IS" basis,
6
//WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
7
//for the specific language governing rights and
8
//limitations under the License.
9
//
10
//The Original Code is "The Columba Project"
11
//
12
//The Initial Developers of the Original Code are Frederik Dietz and Timo Stich.
13
//Portions created by Frederik Dietz and Timo Stich are Copyright (C) 2003.
14
//
15
//All Rights Reserved.
16
package org.columba.mail.filter.plugins;
17
18 import javax.swing.JOptionPane JavaDoc;
19
20 import org.columba.api.command.ICommand;
21 import org.columba.core.filter.AbstractFilterAction;
22 import org.columba.core.filter.FilterAction;
23 import org.columba.core.filter.IFilterAction;
24 import org.columba.core.folder.api.IFolder;
25 import org.columba.core.gui.frame.FrameManager;
26 import org.columba.mail.command.MailFolderCommandReference;
27 import org.columba.mail.folder.IMailbox;
28 import org.columba.mail.folder.command.CopyMessageCommand;
29 import org.columba.mail.gui.tree.FolderTreeModel;
30
31 /**
32  * @author freddy
33  *
34  * To change this generated comment edit the template variable "typecomment":
35  * Window>Preferences>Java>Templates. To enable and disable the creation of type
36  * comments go to Window>Preferences>Java>Code Generation.
37  */

38 public class CopyMessageAction extends AbstractFilterAction {
39     public ICommand getCommand(IFilterAction filterAction,
40             IFolder srcFolder, Object JavaDoc[] uids) throws Exception JavaDoc {
41         String JavaDoc uid = filterAction.getUid();
42
43         IMailbox destFolder = (IMailbox) FolderTreeModel.getInstance()
44                 .getFolder(uid);
45
46         if (destFolder == null) {
47             JOptionPane
48                     .showMessageDialog(
49                             FrameManager.getInstance()
50                             .getActiveFrame(),
51                             "Unable to find destination folder, please correct the destination folder path for this filter");
52             throw new Exception JavaDoc("File not found");
53         }
54
55         MailFolderCommandReference r = new MailFolderCommandReference(srcFolder,
56                 destFolder, uids);
57
58         CopyMessageCommand c = new CopyMessageCommand(r);
59
60         return c;
61     }
62 }
Popular Tags