kerry
5 years ago
2 changed files with 0 additions and 93 deletions
@ -1,47 +0,0 @@ |
|||||||
package com.fr.design.fun; |
|
||||||
|
|
||||||
import com.fr.decision.extension.report.ReportSupportedFileProvider; |
|
||||||
import com.fr.design.mainframe.JTemplate; |
|
||||||
import com.fr.file.FILEChooserPane; |
|
||||||
import com.fr.stable.fun.mark.Mutable; |
|
||||||
|
|
||||||
import javax.swing.Icon; |
|
||||||
|
|
||||||
/** |
|
||||||
* Created by kerry on 2019-10-11 |
|
||||||
*/ |
|
||||||
public interface NewTemplateFileOptionProvider extends Mutable { |
|
||||||
|
|
||||||
int CURRENT_LEVEL = 1; |
|
||||||
|
|
||||||
String XML_TAG = "NewTemplateFileOptionProvider"; |
|
||||||
|
|
||||||
/** |
|
||||||
* 向文件选择器中添加指定文件类型过滤器 |
|
||||||
* @param fileChooser 文件选择器 |
|
||||||
* @param suffix 文件后缀 |
|
||||||
*/ |
|
||||||
void addChooseFileFilter(FILEChooserPane fileChooser, String suffix); |
|
||||||
|
|
||||||
|
|
||||||
/** |
|
||||||
* 获取对应的新增的支持文件类型 |
|
||||||
* @return ReportTemplateFileProvider |
|
||||||
*/ |
|
||||||
ReportSupportedFileProvider getSupportedFile(); |
|
||||||
|
|
||||||
/** |
|
||||||
* 获取文件关联的icon |
|
||||||
* @param path 文件路径 |
|
||||||
* @param isShowLock 是否显示被锁住 |
|
||||||
* @return 对应的图标 |
|
||||||
*/ |
|
||||||
Icon getFileIcon(String path,boolean isShowLock); |
|
||||||
|
|
||||||
/** |
|
||||||
* 保存为新类型文件 |
|
||||||
* @param targetPath 目标路径 |
|
||||||
* @param jTemplate 模板对象 |
|
||||||
*/ |
|
||||||
boolean saveToNewFile(String targetPath, JTemplate jTemplate); |
|
||||||
} |
|
@ -1,46 +0,0 @@ |
|||||||
package com.fr.design.fun.impl; |
|
||||||
|
|
||||||
import com.fr.decision.extension.report.ReportSupportedFileProvider; |
|
||||||
import com.fr.design.fun.NewTemplateFileOptionProvider; |
|
||||||
import com.fr.design.mainframe.JTemplate; |
|
||||||
import com.fr.file.FILEChooserPane; |
|
||||||
import com.fr.stable.fun.impl.AbstractProvider; |
|
||||||
import com.fr.stable.fun.mark.API; |
|
||||||
|
|
||||||
import javax.swing.Icon; |
|
||||||
|
|
||||||
/** |
|
||||||
* Created by kerry on 2019-10-14 |
|
||||||
*/ |
|
||||||
@API(level = NewTemplateFileOptionProvider.CURRENT_LEVEL) |
|
||||||
public abstract class AbstractNewTemplateFileOptionProvider extends AbstractProvider implements NewTemplateFileOptionProvider { |
|
||||||
@Override |
|
||||||
public void addChooseFileFilter(FILEChooserPane fileChooser, String suffix) { |
|
||||||
|
|
||||||
} |
|
||||||
|
|
||||||
@Override |
|
||||||
public ReportSupportedFileProvider getSupportedFile() { |
|
||||||
return null; |
|
||||||
} |
|
||||||
|
|
||||||
@Override |
|
||||||
public Icon getFileIcon(String path, boolean isShowLock) { |
|
||||||
return null; |
|
||||||
} |
|
||||||
|
|
||||||
@Override |
|
||||||
public boolean saveToNewFile(String targetPath, JTemplate jTemplate) { |
|
||||||
return false; |
|
||||||
} |
|
||||||
|
|
||||||
@Override |
|
||||||
public int currentAPILevel() { |
|
||||||
return CURRENT_LEVEL; |
|
||||||
} |
|
||||||
|
|
||||||
@Override |
|
||||||
public String mark4Provider() { |
|
||||||
return getClass().getName(); |
|
||||||
} |
|
||||||
} |
|
Loading…
Reference in new issue