forked from fanruan/design
hades
4 years ago
6 changed files with 157 additions and 2 deletions
@ -0,0 +1,43 @@ |
|||||||
|
package com.fr.design.fun; |
||||||
|
|
||||||
|
import com.fr.file.filetree.FileNodes; |
||||||
|
import com.fr.stable.fun.mark.Immutable; |
||||||
|
import com.fr.workspace.resource.WorkResource; |
||||||
|
import com.fr.workspace.server.lock.TplOperator; |
||||||
|
|
||||||
|
/** |
||||||
|
* 本地资源操作插件接口 |
||||||
|
* |
||||||
|
* @author hades |
||||||
|
* @version 10.0 |
||||||
|
* Created by hades on 2020/12/22 |
||||||
|
*/ |
||||||
|
public interface LocalResourceProvider extends Immutable { |
||||||
|
|
||||||
|
String XML_TAG = "LocalResourceProvider"; |
||||||
|
|
||||||
|
int CURRENT_LEVEL = 1; |
||||||
|
|
||||||
|
/** |
||||||
|
* eg: FineWorkResource |
||||||
|
* |
||||||
|
* @return 目录/文件的操作方式 |
||||||
|
*/ |
||||||
|
WorkResource createResource(); |
||||||
|
|
||||||
|
|
||||||
|
/** |
||||||
|
* eg: LocalFileNodes |
||||||
|
* |
||||||
|
* @return 构建目录树的方式 |
||||||
|
*/ |
||||||
|
FileNodes createFileNodes(); |
||||||
|
|
||||||
|
/** |
||||||
|
* eg:LocalTplOperator |
||||||
|
* |
||||||
|
* 模板操作 关闭/打开等操作 |
||||||
|
*/ |
||||||
|
TplOperator createTplOperator(); |
||||||
|
|
||||||
|
} |
@ -0,0 +1,19 @@ |
|||||||
|
package com.fr.design.fun; |
||||||
|
|
||||||
|
import com.fr.stable.fun.mark.Immutable; |
||||||
|
import java.awt.event.MouseEvent; |
||||||
|
|
||||||
|
/** |
||||||
|
* @author hades |
||||||
|
* @version 10.0 |
||||||
|
* Created by hades on 2020/12/14 |
||||||
|
*/ |
||||||
|
public interface TemplateTreeDefineProcessor extends Immutable { |
||||||
|
|
||||||
|
String XML_TAG = "TemplateTreeDefineProcessor"; |
||||||
|
|
||||||
|
int CURRENT_LEVEL = 1; |
||||||
|
|
||||||
|
void rightClickAction(MouseEvent mouseEvent); |
||||||
|
|
||||||
|
} |
@ -0,0 +1,23 @@ |
|||||||
|
package com.fr.design.fun.impl; |
||||||
|
|
||||||
|
import com.fr.design.fun.LocalResourceProvider; |
||||||
|
import com.fr.stable.fun.mark.API; |
||||||
|
|
||||||
|
/** |
||||||
|
* @author hades |
||||||
|
* @version 10.0 |
||||||
|
* Created by hades on 2020/12/22 |
||||||
|
*/ |
||||||
|
@API(level = LocalResourceProvider.CURRENT_LEVEL) |
||||||
|
public abstract class AbstractLocalResourceProvider implements LocalResourceProvider { |
||||||
|
|
||||||
|
@Override |
||||||
|
public int currentAPILevel() { |
||||||
|
return CURRENT_LEVEL; |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public int layerIndex() { |
||||||
|
return DEFAULT_LAYER_INDEX; |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,24 @@ |
|||||||
|
package com.fr.design.fun.impl; |
||||||
|
|
||||||
|
import com.fr.design.fun.TemplateTreeDefineProcessor; |
||||||
|
import com.fr.stable.fun.mark.API; |
||||||
|
|
||||||
|
/** |
||||||
|
* @author hades |
||||||
|
* @version 10.0 |
||||||
|
* Created by hades on 2020/12/21 |
||||||
|
*/ |
||||||
|
@API(level = TemplateTreeDefineProcessor.CURRENT_LEVEL) |
||||||
|
public abstract class AbstractTemplateTreeDefineProcessor implements TemplateTreeDefineProcessor { |
||||||
|
|
||||||
|
@Override |
||||||
|
public int currentAPILevel() { |
||||||
|
return CURRENT_LEVEL; |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public int layerIndex() { |
||||||
|
return DEFAULT_LAYER_INDEX; |
||||||
|
} |
||||||
|
|
||||||
|
} |
Loading…
Reference in new issue