1/* 2 ***************************************************************************** 3 * Copyright (C) 2000-2004, International Business Machines Corporation and * 4 * others. All Rights Reserved. * 5 ***************************************************************************** 6 */ 7package com.ibm.rbm; 8 9import java.io.IOException; 10 11import 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 */ 20public abstract class RBExporter { 21 protected static JFileChooser chooser; 22 23 public abstract void export(RBManager rbm) throws IOException; 24}