package com.vci.client.ui.swing.components.table;
|
|
import com.vci.client.ui.swing.components.table.export.VCIJTableExportInterface;
|
|
/**
|
*
|
* <p>Title: </p>
|
* <p>Description: </p>
|
* <p>Copyright: Copyright (c) 2012</p>
|
* <p>Company: VCI</p>
|
* @author xchao
|
* @time 2012-5-10
|
* @version 1.0
|
*/
|
public abstract class AbstractVCIJTableExport implements
|
VCIJTableExportInterface {
|
protected String[][] datas = null;
|
protected String outFile = null;
|
|
public boolean export() {
|
// TODO Auto-generated method stub
|
return false;
|
}
|
|
}
|