KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > columba > mail > command > IMAPFolderCommand


1 /*
2  * Created on 14.04.2003
3  *
4  * To change the template for this generated file go to
5  * Window>Preferences>Java>Code Generation>Code and Comments
6  */

7 package org.columba.mail.command;
8
9 import org.columba.core.command.Command;
10 import org.columba.core.command.DefaultCommandReference;
11 import org.columba.mail.folder.imap.IMAPRootFolder;
12
13 /**
14  * @author frd
15  *
16  * To change the template for this generated type comment go to
17  * Window>Preferences>Java>Code Generation>Code and Comments
18  */

19 public abstract class IMAPFolderCommand extends Command {
20     protected IMAPRootFolder rootFolder;
21
22     /**
23      * @param references
24      */

25     public IMAPFolderCommand(IMAPRootFolder rootFolder,
26             DefaultCommandReference reference) {
27         super(reference);
28         this.rootFolder = rootFolder;
29     }
30
31     /**
32      * @return
33      */

34     public IMAPRootFolder getIMAPRootFolder() {
35         return rootFolder;
36     }
37 }
Popular Tags