4e48ae74ff
X-SVN-Rev: 15946
27 lines
712 B
Java
27 lines
712 B
Java
/*
|
|
*****************************************************************************
|
|
* Copyright (C) 2000-2004, International Business Machines Corporation and *
|
|
* others. All Rights Reserved. *
|
|
*****************************************************************************
|
|
*/
|
|
package com.ibm.rbm;
|
|
|
|
import javax.swing.*;
|
|
|
|
/**
|
|
* This is the super class for all exporter plug-in classes. As of yet, there
|
|
* is little contained in this class.
|
|
*
|
|
* @author Jared Jackson
|
|
* @see com.ibm.rbm.RBManager
|
|
*/
|
|
public class RBExporter {
|
|
protected static JFileChooser chooser;
|
|
|
|
/**
|
|
* Basic empty constructor.
|
|
*/
|
|
public RBExporter() {
|
|
|
|
}
|
|
} |