01: /*
02: * Created on 14.04.2003
03: *
04: * To change the template for this generated file go to
05: * Window>Preferences>Java>Code Generation>Code and Comments
06: */
07: package org.columba.mail.command;
08:
09: 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: }
|