forked from fanruan/design
Browse Source
* commit '0f2680faea0490031ba74d81d4b36e70e157f4bd': 数据集分组接口修改 数据集分组插件需要改一下frame加载顺序master
richie
9 years ago
9 changed files with 117 additions and 54 deletions
@ -0,0 +1,41 @@
|
||||
package com.fr.design.data; |
||||
|
||||
import com.fr.design.data.datapane.TableDataTree; |
||||
import com.fr.design.data.tabledata.tabledatapane.AbstractTableDataPane; |
||||
import com.fr.design.mainframe.DockingView; |
||||
|
||||
import javax.swing.*; |
||||
|
||||
/** |
||||
* Coder: zack |
||||
* Date: 2016/4/22 |
||||
* Time: 16:23 |
||||
*/ |
||||
public class BasicTableDataTreePane extends DockingView{ |
||||
@Override |
||||
public void refreshDockingView() { |
||||
|
||||
} |
||||
|
||||
@Override |
||||
public String getViewTitle() { |
||||
return null; |
||||
} |
||||
|
||||
@Override |
||||
public Icon getViewIcon() { |
||||
return null; |
||||
} |
||||
|
||||
@Override |
||||
public Location preferredLocation() { |
||||
return null; |
||||
} |
||||
|
||||
public void dgEdit(final AbstractTableDataPane<?> uPanel, String originalName) { |
||||
} |
||||
|
||||
public TableDataTree getDataTree() { |
||||
return null; |
||||
} |
||||
} |
Loading…
Reference in new issue