01: /*
02: *****************************************************************************
03: * Copyright (C) 2000-2004, International Business Machines Corporation and *
04: * others. All Rights Reserved. *
05: *****************************************************************************
06: */
07: package com.ibm.rbm;
08:
09: 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:
23: public abstract void export(RBManager rbm) throws IOException;
24: }
|