KickJava   Java API By Example, From Geeks To Geeks.

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


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.MoveMessageCommand;
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 MoveMessageAction extends AbstractFilterAction {
39     /**
40      * @see org.columba.modules.mail.filter.action.AbstractFilterAction#execute()
41      *
42      * move message from source- to destination-folder
43      */

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