• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  *****************************************************************************
3  * Copyright (C) 2000-2004, International Business Machines Corporation and  *
4  * others. All Rights Reserved.                                              *
5  *****************************************************************************
6  */
7 package com.ibm.rbm;
8 
9 import java.io.IOException;
10 
11 import javax.swing.*;
12 
13 /**
14  * This is the super class for all exporter plug-in classes. As of yet, there
15  * is little contained in this class.
16  *
17  * @author Jared Jackson
18  * @see com.ibm.rbm.RBManager
19  */
20 public abstract class RBExporter {
21     protected static JFileChooser chooser;
22 
export(RBManager rbm)23     public abstract void export(RBManager rbm) throws IOException;
24 }